10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var from = require('../internals/collection-from');
|
|
|
|
// `Set.from` method
|
|
// https://tc39.github.io/proposal-setmap-offrom/#sec-set.from
|
|
$({ target: 'Set', stat: true, forced: true }, {
|
|
from: from
|
|
});
|