UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

8 lines 241 B
export function installPolyfillsFromModule(module, polyfills) { for (const polyfill of polyfills) { if (!(polyfill in global)) { global[polyfill] = module[polyfill]; } } } //# sourceMappingURL=utils.js.map