UNPKG

function-enhancements

Version:

Some javascript function enhacements. Arguments:pass, prepend, append. Timing: delay, periodical, debounce, throttle, once

84 lines 1.81 kB
{ "name": "function-enhancements", "version": "0.1.0", "description": "Some javascript function enhacements. Arguments:pass, prepend, append. Timing: delay, periodical, debounce, throttle, once", "main": "./index.js", "keywords": [ "function", "functions", "pass", "append", "prepend", "delay", "periodical", "debounce", "throttle", "once", "every", "after", "nth", "funnel", "single", "cache" ], "directories": { "lib": ".", "test": "test" }, "scripts" : { "test" : "tap test/test.js", "coverage": "node test/code-coverage.js" }, "repository": { "type": "git", "url": "git://github.com/llafuente/js-function-enhancements.git" }, "author": { "name": "Luis Lafuente", "email": "llafuente@noboxout.com", "url": "http://www.noboxout.com" }, "license": "MIT", "engine": { "node": ">=0.4" }, "dependencies" : {}, "devDependencies": { "tap" : "0.3.2", "ass" : "" }, "jshintConfig": { "white": true, "curly": true, "eqeqeq": true, "indent": 4, "asi": false, "boss": false, "browser": true, "devel": true, "maxdepth": 4, "maxstatements": 25, "maxcomplexity": 6, "eqnull": true, "es5": true, "evil": false, "immed": false, "jquery": true, "latedef": false, "laxcomma": true, "laxbreak": true, "newcap": true, "node": true, "noempty": true, "nonew": true, "predef": [ "log" ], "quotmark": "double", "smarttabs": false, "strict": true, "trailing": true, "undef": true, "unused": true } }