add support for is.generator & is.generatorFunction

This commit is contained in:
Kunall Banerjee 2017-09-23 20:37:37 -04:00
parent 103c5afe6f
commit 7fcd993232
3 changed files with 22 additions and 1 deletions

16
test.js
View file

@ -82,7 +82,7 @@ const types = new Map([
['integer', 6]
]);
// This ensure a certain method matches only the types
// This ensures a certain method matches only the types
// it's supposed to and none of the other methods' types
const testType = (t, type, exclude) => {
for (const [key, value] of types) {
@ -166,6 +166,20 @@ if (isNode8orHigher) {
});
}
test('is.generator', t => {
const genObj = (function * () {
yield 42;
})();
t.true(m.generator(genObj));
});
test('is.generatorFunction', t => {
const gen = function * () {
yield 42;
};
t.true(m.generatorFunction(gen));
});
test('is.map', t => {
testType(t, 'map');
});