@typedash/typedash
Advanced tools
Comparing version 0.3.1 to 0.4.0
@@ -6,5 +6,5 @@ export { append, appendW, chain, chop, chunksOf, concat, concatW, copy, difference, dropLeft, dropLeftWhile, dropRight, duplicate, elem, // R.includes (but with Eq) | ||
makeBy, map, mapWithIndex, match, modifyAt, of, prepend, prependAll, prependW, reduce, reduceWithIndex, replicate, // R.repeat | ||
reverse, size, splitAt, tail, takeLeft, takeLeftWhile, takeRight, union, zip, zipWith, updateAt, } from 'fp-ts/Array'; | ||
reverse, size, sort, splitAt, tail, takeLeft, takeLeftWhile, takeRight, union, uniq, zip, zipWith, updateAt, } from 'fp-ts/Array'; | ||
export { countBy, dropAt, endsWith, join, reject, slice, startsWith, sum, without, zipAll, } from 'fp-ts-std/Array'; | ||
export { includes, sort, sortBy, groupWith, groupBy, uniq, uniqBy } from 'ramda'; | ||
export { includes, sortBy, groupWith, groupBy } from 'ramda'; | ||
export { included, lengthEq, lengthGt, lengthGte, lengthLt, lengthLte, lengthNotEq, } from 'ramda-adjunct'; |
@@ -11,3 +11,3 @@ "use strict"; | ||
exports.size = exports.reverse = exports.replicate = exports.reduceWithIndex = exports.reduce = exports.prependW = exports.prependAll = exports.prepend = exports.of = exports.modifyAt = exports.match = exports.mapWithIndex = exports.map = exports.makeBy = exports.lookup = exports.last = exports.isNonEmpty = exports.isEmpty = exports.intersperse = exports.intersection = exports.init = exports.head = exports.fromPredicate = exports.flatten = exports.findLastMap = exports.findLastIndex = exports.findLast = exports.findIndex = exports.findFirstMap = exports.findFirst = exports.filterWithIndex = exports.filterMapWithIndex = exports.filterMap = exports.filter = exports.exists = exports.every = exports.elem = exports.duplicate = exports.dropRight = exports.dropLeftWhile = exports.dropLeft = exports.difference = exports.copy = exports.concatW = exports.concat = exports.chunksOf = exports.chop = exports.chain = exports.appendW = exports.append = void 0; | ||
exports.lengthNotEq = exports.lengthLte = exports.lengthLt = exports.lengthGte = exports.lengthGt = exports.lengthEq = exports.included = exports.uniqBy = exports.uniq = exports.groupBy = exports.groupWith = exports.sortBy = exports.sort = exports.includes = exports.zipAll = exports.without = exports.sum = exports.startsWith = exports.slice = exports.reject = exports.join = exports.endsWith = exports.dropAt = exports.countBy = exports.updateAt = exports.zipWith = exports.zip = exports.union = exports.takeRight = exports.takeLeftWhile = exports.takeLeft = exports.tail = exports.splitAt = void 0; | ||
exports.lengthNotEq = exports.lengthLte = exports.lengthLt = exports.lengthGte = exports.lengthGt = exports.lengthEq = exports.included = exports.groupBy = exports.groupWith = exports.sortBy = exports.includes = exports.zipAll = exports.without = exports.sum = exports.startsWith = exports.slice = exports.reject = exports.join = exports.endsWith = exports.dropAt = exports.countBy = exports.updateAt = exports.zipWith = exports.zip = exports.uniq = exports.union = exports.takeRight = exports.takeLeftWhile = exports.takeLeft = exports.tail = exports.splitAt = exports.sort = void 0; | ||
// https://gcanti.github.io/fp-ts/modules/Array.ts.html | ||
@@ -65,2 +65,3 @@ var Array_1 = require("fp-ts/Array"); | ||
__createBinding(exports, Array_1, "size"); | ||
__createBinding(exports, Array_1, "sort"); | ||
__createBinding(exports, Array_1, "splitAt"); | ||
@@ -72,2 +73,3 @@ __createBinding(exports, Array_1, "tail"); | ||
__createBinding(exports, Array_1, "union"); | ||
__createBinding(exports, Array_1, "uniq"); | ||
__createBinding(exports, Array_1, "zip"); | ||
@@ -89,8 +91,5 @@ __createBinding(exports, Array_1, "zipWith"); | ||
__createBinding(exports, ramda_1, "includes"); | ||
__createBinding(exports, ramda_1, "sort"); | ||
__createBinding(exports, ramda_1, "sortBy"); | ||
__createBinding(exports, ramda_1, "groupWith"); | ||
__createBinding(exports, ramda_1, "groupBy"); | ||
__createBinding(exports, ramda_1, "uniq"); | ||
__createBinding(exports, ramda_1, "uniqBy"); | ||
var ramda_adjunct_1 = require("ramda-adjunct"); | ||
@@ -97,0 +96,0 @@ __createBinding(exports, ramda_adjunct_1, "included"); |
@@ -11,4 +11,3 @@ export * as A from './Array'; | ||
export * as S from './String'; | ||
export * as T from './Task'; | ||
export * as TE from './TaskEither'; | ||
export * from './function'; |
@@ -25,3 +25,3 @@ "use strict"; | ||
exports.__esModule = true; | ||
exports.TE = exports.T = exports.S = exports.Semi = exports.R = exports.P = exports.O = exports.NEA = exports.J = exports.E = exports.AP = exports.A = void 0; | ||
exports.TE = exports.S = exports.Semi = exports.R = exports.P = exports.O = exports.NEA = exports.J = exports.E = exports.AP = exports.A = void 0; | ||
exports.A = __importStar(require("./Array")); | ||
@@ -37,5 +37,4 @@ exports.AP = __importStar(require("./Apply")); | ||
exports.S = __importStar(require("./String")); | ||
exports.T = __importStar(require("./Task")); | ||
exports.TE = __importStar(require("./TaskEither")); | ||
__exportStar(require("./function"), exports); | ||
//# sourceMappingURL=index.js.map |
@@ -6,5 +6,5 @@ export { append, appendW, chain, chop, chunksOf, concat, concatW, copy, difference, dropLeft, dropLeftWhile, dropRight, duplicate, elem, // R.includes (but with Eq) | ||
makeBy, map, mapWithIndex, match, modifyAt, of, prepend, prependAll, prependW, reduce, reduceWithIndex, replicate, // R.repeat | ||
reverse, size, splitAt, tail, takeLeft, takeLeftWhile, takeRight, union, zip, zipWith, updateAt, } from 'fp-ts/Array'; | ||
reverse, size, sort, splitAt, tail, takeLeft, takeLeftWhile, takeRight, union, uniq, zip, zipWith, updateAt, } from 'fp-ts/Array'; | ||
export { countBy, dropAt, endsWith, join, reject, slice, startsWith, sum, without, zipAll, } from 'fp-ts-std/Array'; | ||
export { includes, sort, sortBy, groupWith, groupBy, uniq, uniqBy } from 'ramda'; | ||
export { includes, sortBy, groupWith, groupBy } from 'ramda'; | ||
export { included, lengthEq, lengthGt, lengthGte, lengthLt, lengthLte, lengthNotEq, } from 'ramda-adjunct'; |
@@ -7,6 +7,6 @@ // https://gcanti.github.io/fp-ts/modules/Array.ts.html | ||
makeBy, map, mapWithIndex, match, modifyAt, of, prepend, prependAll, prependW, reduce, reduceWithIndex, replicate, // R.repeat | ||
reverse, size, splitAt, tail, takeLeft, takeLeftWhile, takeRight, union, zip, zipWith, updateAt, } from 'fp-ts/Array'; | ||
reverse, size, sort, splitAt, tail, takeLeft, takeLeftWhile, takeRight, union, uniq, zip, zipWith, updateAt, } from 'fp-ts/Array'; | ||
export { countBy, dropAt, endsWith, join, reject, slice, startsWith, sum, without, zipAll, } from 'fp-ts-std/Array'; | ||
export { includes, sort, sortBy, groupWith, groupBy, uniq, uniqBy } from 'ramda'; | ||
export { includes, sortBy, groupWith, groupBy } from 'ramda'; | ||
export { included, lengthEq, lengthGt, lengthGte, lengthLt, lengthLte, lengthNotEq, } from 'ramda-adjunct'; | ||
//# sourceMappingURL=_external.js.map |
@@ -11,4 +11,3 @@ export * as A from './Array'; | ||
export * as S from './String'; | ||
export * as T from './Task'; | ||
export * as TE from './TaskEither'; | ||
export * from './function'; |
@@ -11,5 +11,4 @@ export * as A from './Array'; | ||
export * as S from './String'; | ||
export * as T from './Task'; | ||
export * as TE from './TaskEither'; | ||
export * from './function'; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@typedash/typedash", | ||
"version": "0.3.1", | ||
"version": "0.4.0", | ||
"description": "Domain agnostic utility functions", | ||
@@ -36,3 +36,3 @@ "sideEffects": false, | ||
"ramda-adjunct": "2.35.0", | ||
"ts-pattern": "3.3.5", | ||
"ts-pattern": "4.0.4", | ||
"zod": "^3.19.1" | ||
@@ -39,0 +39,0 @@ }, |
export * from './_external' | ||
export * from './isNotEmpty' | ||
export * from './partitionAll' | ||
export * from './rotate' | ||
export * from './shuffle' | ||
export * from './shuffleWithSeed' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1030955
386
3714
+ Addedts-pattern@4.0.4(transitive)
- Removedts-pattern@3.3.5(transitive)
Updatedts-pattern@4.0.4