mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var fromAsync = require('../internals/array-from-async');
|
|
|
|
// `Array.fromAsync` method
|
|
// https://github.com/tc39/proposal-array-from-async
|
|
$({ target: 'Array', stat: true }, {
|
|
fromAsync: fromAsync
|
|
});
|