global function 'fn' to sandbox all other definitions
Old Browsers
it's recomended to add this code before scripts to ensure compatibility with old browsers
<!--[if lt IE 9]><script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.0.5/es5-shim.min.js"></script><![endif]--><!--[if lt IE 12]><script src="//cdnjs.cloudflare.com/ajax/libs/es6-shim/0.21.1/es6-shim.min.js"></script><![endif]-->
Installation
npm install jstools-fn --save
or
bower install jstools-fn --save
Usage
fn.define(moduleName, dependencies?, definition)
fn;
example
fn;
fn.require(dependencies, callback)
fn;
fn.run(dependencies || function)
or just fn(dependencies || function)
explicit injection mode
fn;
implicit injection mode (dependencies will be automatically detected -not recomended when uglifying code- )
fn;
fn.defer(function, timeout? (0) )
;fndefer { console; };;
output:
test 1
test 3
test 2