• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Haixing-Hu / js-common-util / 1a2e962e-f581-41e9-a222-b99ee5d43b88

13 Dec 2023 05:38AM UTC coverage: 52.155% (-5.2%) from 57.398%
1a2e962e-f581-41e9-a222-b99ee5d43b88

push

circleci

Haixing-Hu
build: upgrade yarn.lock

215 of 446 branches covered (0.0%)

Branch coverage included in aggregate %.

269 of 482 relevant lines covered (55.81%)

12.43 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/impl/buildin-class.js
1
////////////////////////////////////////////////////////////////////////////////
2
//
3
//    Copyright (c) 2022 - 2023.
4
//    Haixing Hu, Qubit Co. Ltd.
5
//
6
//    All rights reserved.
7
//
8
////////////////////////////////////////////////////////////////////////////////
9

10
// Classes that define various ES5+ built-in objects
11

12
/* eslint-disable no-undef */
13
export const PromiseClass = (typeof Promise !== 'undefined' ? Promise : undefined);
×
14
export const MapClass = (typeof Map !== 'undefined' ? Map : undefined);
×
15
export const SetClass = (typeof Set !== 'undefined' ? Set : undefined);
×
16
export const WeakMapClass = (typeof WeakMap !== 'undefined' ? WeakMap : undefined);
×
17
export const WeakSetClass = (typeof WeakSet !== 'undefined' ? WeakSet : undefined);
×
18
export const ArrayBufferClass = (typeof ArrayBuffer !== 'undefined' ? ArrayBuffer : undefined);
×
19
export const SharedArrayBufferClass = (typeof SharedArrayBuffer !== 'undefined' ? SharedArrayBuffer : undefined);
×
20
export const DataViewClass = (typeof DataView !== 'undefined' ? DataView : undefined);
×
21
export const BigIntClass = (typeof BigInt !== 'undefined' ? BigInt : undefined);
×
22
export const BigInt64ArrayClass = (typeof BigInt64Array !== 'undefined' ? BigInt64Array : undefined);
×
23
export const BigUint64ArrayClass = (typeof BigUint64Array !== 'undefined' ? BigUint64Array : undefined);
×
24
export const Float32ArrayClass = (typeof Float32Array !== 'undefined' ? Float32Array : undefined);
×
25
export const Float64ArrayClass = (typeof Float64Array !== 'undefined' ? Float64Array : undefined);
×
26
export const Int8ArrayClass = (typeof Int8Array !== 'undefined' ? Int8Array : undefined);
×
27
export const Int16ArrayClass = (typeof Int16Array !== 'undefined' ? Int16Array : undefined);
×
28
export const Int32ArrayClass = (typeof Int32Array !== 'undefined' ? Int32Array : undefined);
×
29
export const Uint8ArrayClass = (typeof Uint8Array !== 'undefined' ? Uint8Array : undefined);
×
30
export const Uint8ClampedArrayClass = (typeof Uint8ClampedArray !== 'undefined' ? Uint8ClampedArray : undefined);
×
31
export const Uint16ArrayClass = (typeof Uint16Array !== 'undefined' ? Uint16Array : undefined);
×
32
export const Uint32ArrayClass = (typeof Uint32Array !== 'undefined' ? Uint32Array : undefined);
×
33
export const SymbolClass = (typeof Symbol !== 'undefined' ? Symbol : undefined);
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc