UNPKG

@nativescript/core

Version:

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

8 lines 432 B
// This method iterates all the keys in the source exports object and copies them to the destination exports one. // Note: the method will not check for naming collisions and will override any already existing entries in the destination exports. export function merge(sourceExports, destExports) { for (const key in sourceExports) { destExports[key] = sourceExports[key]; } } //# sourceMappingURL=module-merge.js.map