UNPKG

vimo-dt

Version:

A Vue2.x UI Project For Mobile & HyBrid

11 lines (9 loc) 235 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = removeArrayItem; function removeArrayItem(array, item) { var index = array.indexOf(item); return ~index && array.splice(index, 1); }