Skip to content

Commit

Permalink
init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
pemrouz committed May 4, 2015
0 parents commit 0535d52
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
node_modules
coverage
*.log
7 changes: 7 additions & 0 deletions .travis.yml
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"

after_script: NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
5 changes: 5 additions & 0 deletions index.js
@@ -0,0 +1,5 @@
module.exports = function not(fn){
return function(){
return !fn.apply(this, arguments)
}
}
18 changes: 18 additions & 0 deletions package.json
@@ -0,0 +1,18 @@
{
"name": "not",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"test": "istanbul test ./node_modules/mocha/bin/_mocha --report html -- -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage"
},
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"license": "pemrouz.mit-license.org",
"devDependencies": {
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"mocha-lcov-reporter": "0.0.2"
}
}
10 changes: 10 additions & 0 deletions test.js
@@ -0,0 +1,10 @@
var expect = require('chai').expect
, not = require('./')

describe('not', function() {
it('should invert result of function', function() {
var a = [0, 1, 2, 3]
expect(a.filter(Boolean)).to.eql([1,2,3])
expect(a.filter(not(Boolean))).to.eql([0])
})
})

0 comments on commit 0535d52

Please sign in to comment.