Skip to content

Instantly share code, notes, and snippets.

View moander's full-sized avatar

moander moander

  • Norway
View GitHub Profile
@moander
moander / extendArrayProto.ts
Last active March 10, 2024 08:01
Lodash on Array.prototype
// eslint-disable
// Access prefixed lodash array functions on the Array prototype.
// For example [3,2,1].js1SortBy(x => x)
// https://gist.github.com/moander/c61c0e01027d7252a17f9d507985ac31
import type { Dictionary, ListIteratee, LoDashImplicitWrapper, Many, PropertyName, ValueIteratee, ValueIterateeCustom, ValueIteratorTypeGuard, Object as _Object } from 'lodash'
import {
chunk as js1Chunk,