README
Install
# npm
npm install plugin-decrease
# yarn
yarn add plugin-decrease
Usage
import decrease from 'plugin-decrease';
const a = 1, b = 2;
const c = decrease(a, b);
console.log(c); // -1
test for publish package
<script type="module">
import pluginDecrease from 'https://cdn.skypack.dev/plugin-decrease';
</script>
# npm
npm install plugin-decrease
# yarn
yarn add plugin-decrease
import decrease from 'plugin-decrease';
const a = 1, b = 2;
const c = decrease(a, b);
console.log(c); // -1