Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chain-able-deps / dist / typings / loop / each / arrayEach.d.ts
Size: Mime:
/**
 * A specialized version of `forEach` for arrays.
 * @since 5.0.0-beta.5
 * @memberOf loop
 *
 * @param [array] The array to iterate over.
 * @param iteratee The function invoked per iteration.
 * @return Returns `array`.
 */
declare function arrayEach<Value extends any = any[]>(array: Value[], iteratee: (value: Value, index: number, list: Value[]) => false | void): Value[];
export default arrayEach;