@shimataro/hell-word
v0.2.0
Published
地獄の言葉
Readme
hell, word
CJS / ES Modules / Babel 対応パッケージの例
インストール
npm install @shimataro/hell-word使い方
CJS
const {default: foo, bar} = require("@shimataro/hell-word");
foo(); // "hell, word"
bar(); // "地獄の言葉"ES Modules(.mjs) / Babel
import foo, {bar} from "@shimataro/hell-word";
foo(); // "hell, word"
bar(); // "地獄の言葉"