@shimataro/hell-word

地獄の言葉

Usage no npm install needed!

<script type="module">
  import shimataroHellWord from 'https://cdn.skypack.dev/@shimataro/hell-word';
</script>

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