Sha256: 9d28b6e6d1873a1420a9cb0ff4088d3e09b51f95a0b20b87fca3512dfc513f56

Contents?: true

Size: 552 Bytes

Versions: 7

Compression:

Stored size: 552 Bytes

Contents

'use strict';
require('../../modules/es.array.iterator');
require('../../modules/es.string.iterator');
require('../../modules/es.weak-set');
require('../../modules/esnext.weak-set.from');
require('../../modules/web.dom-collections.iterator');
var isCallable = require('../../internals/is-callable');
var path = require('../../internals/path');

var WeakSet = path.WeakSet;
var weakSetfrom = WeakSet.from;

module.exports = function from(source, mapFn, thisArg) {
  return weakSetfrom.call(isCallable(this) ? this : WeakSet, source, mapFn, thisArg);
};

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
disco_app-0.16.1 test/dummy/node_modules/core-js/features/weak-set/from.js
disco_app-0.15.2 test/dummy/node_modules/core-js/features/weak-set/from.js
disco_app-0.18.4 test/dummy/node_modules/core-js/features/weak-set/from.js
disco_app-0.18.1 test/dummy/node_modules/core-js/features/weak-set/from.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/core-js/features/weak-set/from.js
disco_app-0.14.0 test/dummy/node_modules/core-js/features/weak-set/from.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/core-js/features/weak-set/from.js