Permalink
Cannot retrieve contributors at this time
43 lines (41 sloc)
1.24 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/es-abstract/2022/Number/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var add = require('./add'); | |
var bitwiseAND = require('./bitwiseAND'); | |
var bitwiseNOT = require('./bitwiseNOT'); | |
var bitwiseOR = require('./bitwiseOR'); | |
var bitwiseXOR = require('./bitwiseXOR'); | |
var divide = require('./divide'); | |
var equal = require('./equal'); | |
var exponentiate = require('./exponentiate'); | |
var leftShift = require('./leftShift'); | |
var lessThan = require('./lessThan'); | |
var multiply = require('./multiply'); | |
var remainder = require('./remainder'); | |
var sameValue = require('./sameValue'); | |
var sameValueZero = require('./sameValueZero'); | |
var signedRightShift = require('./signedRightShift'); | |
var subtract = require('./subtract'); | |
var toString = require('./toString'); | |
var unaryMinus = require('./unaryMinus'); | |
var unsignedRightShift = require('./unsignedRightShift'); | |
module.exports = { | |
add: add, | |
bitwiseAND: bitwiseAND, | |
bitwiseNOT: bitwiseNOT, | |
bitwiseOR: bitwiseOR, | |
bitwiseXOR: bitwiseXOR, | |
divide: divide, | |
equal: equal, | |
exponentiate: exponentiate, | |
leftShift: leftShift, | |
lessThan: lessThan, | |
multiply: multiply, | |
remainder: remainder, | |
sameValue: sameValue, | |
sameValueZero: sameValueZero, | |
signedRightShift: signedRightShift, | |
subtract: subtract, | |
toString: toString, | |
unaryMinus: unaryMinus, | |
unsignedRightShift: unsignedRightShift | |
}; |