Check if a number is not equal to 13
npm install isnt-thirteenAn npm package to check if a number is not equal to 13.
```
npm i -S isnt-thirteen
`javascript
const isNot = require("isnt-thirteen");
console.log(isNot(12).thirteen()) // => true
console.log(isNot(13).thirteen()) // => false
`
There's tons of other methods, checkout test.js`.