jstime_core 0.66.0

Another JS Runtime
Documentation
1
2
3
4
5
6
7
8
9
10
// Structured Clone API
// https://html.spec.whatwg.org/multipage/structured-data.html#structured-cloning

'use strict';

// eslint-disable-next-line no-unused-expressions
(({ structuredClone: _structuredClone }) => {
  // Make structuredClone available globally
  globalThis.structuredClone = _structuredClone;
});