UNPKG

ng-custom-pipe

Version:

An Angular Library, that gives you a hussle free experience on data operation using pipes

98 lines (97 loc) 3.71 kB
/** Copyright 2023 Infosys Ltd. */ export * from './lib/ng-custom-pipe.service'; export * from './lib/ng-custom-pipe.module'; /** * NUMBER PIPES */ export * from './lib/number/handle-nan.pipe'; export * from './lib/number/absolute.pipe'; export * from './lib/number/byte-convert-to.pipe'; export * from './lib/number/ceil.pipe'; export * from './lib/number/convert-to-base.pipe'; export * from './lib/number/convert-to-word.pipe'; export * from './lib/number/floor.pipe'; export * from './lib/number/integer-type.pipe'; export * from './lib/number/ordinal.pipe'; export * from './lib/number/power.pipe'; export * from './lib/number/round.pipe'; export * from './lib/number/sqroot.pipe'; export * from './lib/number/to-degree.pipe'; export * from './lib/number/to-radian.pipe'; /** * AGGREGATE PIPES */ export * from './lib/aggregate/average.pipe'; export * from './lib/aggregate/group-by.pipe'; export * from './lib/aggregate/maximum.pipe'; export * from './lib/aggregate/median.pipe'; export * from './lib/aggregate/minimum.pipe'; export * from './lib/aggregate/mode.pipe'; export * from './lib/aggregate/sum.pipe'; /** * ARRAY PIPES */ export * from './lib/array/and.pipe'; export * from './lib/array/chunk.pipe'; export * from './lib/array/combine.pipe'; export * from './lib/array/drop.pipe'; export * from './lib/array/empty.pipe'; export * from './lib/array/except.pipe'; export * from './lib/array/filter-one.pipe'; export * from './lib/array/filter.pipe'; export * from './lib/array/first-item.pipe'; export * from './lib/array/flat.pipe'; export * from './lib/array/join.pipe'; export * from './lib/array/last-item.pipe'; export * from './lib/array/length.pipe'; export * from './lib/array/map.pipe'; export * from './lib/array/or.pipe'; export * from './lib/array/order-by.pipe'; export * from './lib/array/pluck-property.pipe'; export * from './lib/array/pop-first-item.pipe'; export * from './lib/array/pop-last-item.pipe'; export * from './lib/array/range.pipe'; export * from './lib/array/reverse-array.pipe'; export * from './lib/array/set.pipe'; export * from './lib/array/sort.pipe'; /** * BOOLEAN PIPES */ export * from './lib/boolean/is-array.pipe'; export * from './lib/boolean/is-binary.pipe'; export * from './lib/boolean/is-defined.pipe'; export * from './lib/boolean/is-equal.pipe'; export * from './lib/boolean/is-function.pipe'; export * from './lib/boolean/is-identical.pipe'; export * from './lib/boolean/is-nil.pipe'; export * from './lib/boolean/is-null.pipe'; export * from './lib/boolean/is-number.pipe'; export * from './lib/boolean/is-object.pipe'; export * from './lib/boolean/is-string.pipe'; export * from './lib/boolean/is-truthy.pipe'; export * from './lib/boolean/is-undefined.pipe'; /** * OBJECT PIPES */ export * from './lib/object/key-array.pipe'; export * from './lib/object/normalise-obj-array.pipe'; export * from './lib/object/stringify.pipe'; export * from './lib/object/to-array.pipe'; /** * STRING PIPES */ export * from './lib/string/capitalize.pipe'; export * from './lib/string/de-latinize.pipe'; export * from './lib/string/interpolate.pipe'; export * from './lib/string/lower.pipe'; export * from './lib/string/match.pipe'; export * from './lib/string/mask.pipe'; export * from './lib/string/normalize.pipe'; export * from './lib/string/repeat.pipe'; export * from './lib/string/replace.pipe'; export * from './lib/string/reverse.pipe'; export * from './lib/string/slug-it.pipe'; export * from './lib/string/split.pipe'; export * from './lib/string/trim.pipe'; export * from './lib/string/truncate.pipe'; export * from './lib/string/upper.pipe';