fabric
Version:
Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.
9 lines • 331 B
TypeScript
/**
* Removes value from an array.
* Presence of value (and its position in an array) is determined via `Array.prototype.indexOf`
* @param {Array} array
* @param {*} value
* @return {Array} original array
*/
export declare const removeFromArray: <T>(array: T[], value: T) => T[];
//# sourceMappingURL=removeFromArray.d.ts.map