Blame view

node_modules/es5-ext/array/#/separate.js 208 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
8
9
10
  '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;
  };