We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0882f6 commit c7b597bCopy full SHA for c7b597b
lib/core/imports/index.js
@@ -7,6 +7,11 @@ import Color from 'colorjs.io';
7
import es6promise from 'es6-promise';
8
import { Uint32Array } from 'typedarray';
9
import 'weakmap-polyfill';
10
+import hasOwn from 'core-js-pure/actual/object/has-own';
11
+
12
+if (!('hasOwn' in Object)) {
13
+ Object.hasOwn = hasOwn;
14
+}
15
16
// prevent striping newline characters from strings (e.g. failure
17
// summaries). value must be synced with build/configure.js
0 commit comments