1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-12 18:52:50 +00:00
Files
mywebsite/node_modules/es5-ext/array/#/separate.js

11 lines
208 B
JavaScript

'use strict';
var forEach = Array.prototype.forEach;
module.exports = function (sep) {
var result = [];
forEach.call(this, function (val, i) { result.push(val, sep); });
result.pop();
return result;
};