0.2.0 • Published 6 years ago

@shimataro/hell-word v0.2.0

Weekly downloads
-
License
-
Repository
-
Last release
6 years ago

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(); // "地獄の言葉"