1.0.0 • Published 8 years ago

diys v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

DIYS

A module for everything.

Browser Support

  • IE 9+
  • FF
  • Chrome
  • Safari

Installation

npm install diys --save

Usage

var diys = require('diys');
var isPositive = diys.func('isPositiveNumber', -1);

console.log(isPositive);

diys.func(); - will accept any function name as the first argument and it will detect automatically what you're trying to to.

Demo

A more comprehensive demo can be found at: ./demo/demo.html

You can run it with npm like so:

npm run demo