deno.land / std@0.91.0 / node / _util / _util_types.ts

_util_types.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.//// Adapted from Node.js. Copyright Joyent, Inc. and other Node contributors.//// Permission is hereby granted, free of charge, to any person obtaining a// copy of this software and associated documentation files (the// "Software"), to deal in the Software without restriction, including// without limitation the rights to use, copy, modify, merge, publish,// distribute, sublicense, and/or sell copies of the Software, and to permit// persons to whom the Software is furnished to do so, subject to the// following conditions://// The above copyright notice and this permission notice shall be included// in all copies or substantial portions of the Software.//// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE// USE OR OTHER DEALINGS IN THE SOFTWARE.
const _toString = Object.prototype.toString;
const _isObjectLike = (value: unknown): boolean => value !== null && typeof value === "object";
const _isFunctionLike = (value: unknown): boolean => value !== null && typeof value === "function";
export function isAnyArrayBuffer(value: unknown): boolean { return ( _isObjectLike(value) && (_toString.call(value) === "[object ArrayBuffer]" || _toString.call(value) === "[object SharedArrayBuffer]") );}
export function isArrayBufferView(value: unknown): boolean { return ArrayBuffer.isView(value);}
export function isArgumentsObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Arguments]";}
export function isArrayBuffer(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object ArrayBuffer]" );}
export function isAsyncFunction(value: unknown): boolean { return ( _isFunctionLike(value) && _toString.call(value) === "[object AsyncFunction]" );}
export function isBigInt64Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object BigInt64Array]" );}
export function isBigUint64Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object BigUint64Array]" );}
export function isBooleanObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Boolean]";}
export function isBoxedPrimitive(value: unknown): boolean { return ( isBooleanObject(value) || isStringObject(value) || isNumberObject(value) || isSymbolObject(value) || isBigIntObject(value) );}
export function isDataView(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object DataView]";}
export function isDate(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Date]";}
// isExternal: Not implemented
export function isFloat32Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Float32Array]" );}
export function isFloat64Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Float64Array]" );}
export function isGeneratorFunction(value: unknown): boolean { return ( _isFunctionLike(value) && _toString.call(value) === "[object GeneratorFunction]" );}
export function isGeneratorObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Generator]";}
export function isInt8Array(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Int8Array]";}
export function isInt16Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Int16Array]" );}
export function isInt32Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Int32Array]" );}
export function isMap(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Map]";}
export function isMapIterator(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Map Iterator]" );}
export function isModuleNamespaceObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Module]";}
export function isNativeError(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Error]";}
export function isNumberObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Number]";}
export function isBigIntObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object BigInt]";}
export function isPromise(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Promise]";}
export function isRegExp(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object RegExp]";}
export function isSet(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Set]";}
export function isSetIterator(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Set Iterator]" );}
export function isSharedArrayBuffer(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object SharedArrayBuffer]" );}
export function isStringObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object String]";}
export function isSymbolObject(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object Symbol]";}
// Adapted from Lodashexport function isTypedArray(value: unknown): boolean { /** Used to match `toStringTag` values of typed arrays. */ const reTypedTag = /^\[object (?:Float(?:32|64)|(?:Int|Uint)(?:8|16|32)|Uint8Clamped)Array\]$/; return _isObjectLike(value) && reTypedTag.test(_toString.call(value));}
export function isUint8Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Uint8Array]" );}
export function isUint8ClampedArray(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Uint8ClampedArray]" );}
export function isUint16Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Uint16Array]" );}
export function isUint32Array(value: unknown): boolean { return ( _isObjectLike(value) && _toString.call(value) === "[object Uint32Array]" );}
export function isWeakMap(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object WeakMap]";}
export function isWeakSet(value: unknown): boolean { return _isObjectLike(value) && _toString.call(value) === "[object WeakSet]";}
std

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉