add booler function and exports

This commit is contained in:
2019-10-31 09:03:22 +07:00
parent bc3180637f
commit 09239c704c
5 changed files with 874 additions and 0 deletions

42
test/booler.test.js Normal file
View File

@@ -0,0 +1,42 @@
const assert = require('assert');
const booler = require('./../index')
it('booler will be pass it to equal true', () => {
assert.equal(true, booler(true));
})
it(`booler will be pass it to equal 'true'`, () => {
assert.equal(true, booler('true'));
})
it(`booler will be pass it to equal 't'`, () => {
assert.equal(true, booler('t'));
})
it(`booler will be pass it to equal '1'`, () => {
assert.equal(true, booler('1'));
})
it('booler will be pass it to equal 1', () => {
assert.equal(true, booler(1));
})
it('booler will be pass it to equal false', () => {
assert.equal(false, booler(false));
})
it(`booler will be pass it to equal 'false'`, () => {
assert.equal(false, booler('false'));
})
it(`booler will be pass it to equal 'f'`, () => {
assert.equal(false, booler('f'));
})
it(`booler will be pass it to equal '0'`, () => {
assert.equal(false, booler(0));
})
it('booler will be pass it to equal 0', () => {
assert.equal(false, booler(0));
})