1.1.0 • Published 5 years ago

npm-sandbox v1.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

NPM Sandbox

This is a npm library for learning how to use make npm packages.

$ npm install --save npm-sandbox

Try it out with a test app:

// $ node test.js

const { setFn, triggerFn } = require('npm-sandbox')

console.log('Before function mutation: ', triggerFn('First attempt'))

setFn((str) => {
  return str.toUpperCase()
})

console.log('After function mutation', triggerFn('Whats up Doc'))

It should output:

Before function mutation:  () => "Unchanged fnA"
Changing fn to  (str) => {
  return str.toUpperCase()
}
After function mutation (str) => {
  return str.toUpperCase()
}