initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
20
github/codeql-action-v1/node_modules/es-abstract/test/helpers/isCodePoint.js
generated
vendored
Normal file
20
github/codeql-action-v1/node_modules/es-abstract/test/helpers/isCodePoint.js
generated
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
'use strict';
|
||||
|
||||
var test = require('tape');
|
||||
var forEach = require('foreach');
|
||||
var debug = require('object-inspect');
|
||||
|
||||
var isCodePoint = require('../../helpers/isCodePoint');
|
||||
var v = require('es-value-fixtures');
|
||||
|
||||
test('isCodePoint', function (t) {
|
||||
forEach(v.notNonNegativeIntegers.concat(0x10FFFF + 1), function (nonCodePoints) {
|
||||
t.equal(isCodePoint(nonCodePoints), false, debug(nonCodePoints) + ' is not a Code Point');
|
||||
});
|
||||
|
||||
forEach([-0, 0, 1, 7, 42, 0x10FFFF], function (codePoint) {
|
||||
t.equal(isCodePoint(codePoint), true, debug(codePoint) + ' is a Code Point');
|
||||
});
|
||||
|
||||
t.end();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue