mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-08 14:34:13 +08:00
54 lines
763 B
JavaScript
54 lines
763 B
JavaScript
const nodeFns = {
|
|
AbortController,
|
|
AbortSignal,
|
|
Array,
|
|
ArrayBuffer,
|
|
Boolean,
|
|
Buffer,
|
|
DataView,
|
|
Date,
|
|
Error,
|
|
EvalError,
|
|
Float32Array,
|
|
Float64Array,
|
|
Function,
|
|
Infinity,
|
|
Int16Array,
|
|
Int32Array,
|
|
Int8Array,
|
|
Intl,
|
|
JSON,
|
|
Math,
|
|
NaN,
|
|
Number,
|
|
Object,
|
|
RangeError,
|
|
ReferenceError,
|
|
RegExp,
|
|
String,
|
|
SyntaxError,
|
|
TypeError,
|
|
URIError,
|
|
URL,
|
|
URLSearchParams,
|
|
Uint16Array,
|
|
Uint32Array,
|
|
Uint8Array,
|
|
Uint8ClampedArray,
|
|
atob,
|
|
btoa,
|
|
decodeURI,
|
|
decodeURIComponent,
|
|
encodeURI,
|
|
encodeURIComponent,
|
|
escape,
|
|
isFinite,
|
|
isNaN,
|
|
parseFloat,
|
|
parseInt,
|
|
require,
|
|
unescape,
|
|
};
|
|
|
|
module.exports = nodeFns
|