mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
'use strict';
|
|
// https://github.com/tc39/proposal-iterator-helpers
|
|
var $ = require('../internals/export');
|
|
var $every = require('../internals/async-iterator-iteration').every;
|
|
|
|
$({ target: 'AsyncIterator', proto: true, real: true }, {
|
|
every: function every(fn) {
|
|
return $every(this, fn);
|
|
}
|
|
});
|