You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"use strict"; |
|
|
|
var lodash = require('lodash'); |
|
|
|
exports.append = function (arr, arrToAppend) { |
|
Array.prototype.push.apply(arr, arrToAppend); |
|
}; |
|
|
|
exports.remove = lodash.remove; // remove 1.5, leaving now just to be safe
|
|
|