📂
Angular Pipes
  • Introduction
  • Overview
    • Introduction
  • Documentation
    • Overview
    • Modules
    • Collections
    • Boolean
    • Math
    • Aggregate
    • String
    • Object
  • Other
    • Contribute
    • Changelog
    • License
Powered by GitBook
On this page
  • Not actively maintained
  • angular-pipes
  • Changelog
  • Contribute
  • Pipes
  • Install
  • How to use
  • Tests
  • License

Was this helpful?

Introduction

NPM Version Build Status Coverage Status Downloads Downloads

Not actively maintained

angular-pipes

angular-pipes is a pipes library for Angular.

Changelog

Check out the changelog to check all the latest changes.

Contribute

Read the contributing guidelines

Pipes

You can find the documentations in the docs folder or on GitBook.

Collections (array)

  • empty

  • head

  • initial

  • join

  • last

  • tail

  • uniq

  • without

  • intersection

  • union

  • range

  • map

  • pluck

  • where

  • firstOrDefault

  • orderBy

  • reverse

  • count

  • some

  • every

  • shuffle

  • take

  • takeUntil

  • takeWhile

  • drop

  • deep

  • chunk

  • flatten

Boolean

  • greater

  • greaterOrEqual

  • less

  • lessOrEqual

  • equal

  • notEqual

  • identical

  • notIdentical

  • isNull

  • isUndefined

  • isNil

  • isNumber

  • isString

  • isFunction

  • isArray

  • isObject

  • isDefined

Math

  • bytes

  • ceil

  • floor

  • round

  • degrees

  • radians

  • random

  • pow

  • sqrt

  • ordinal

Aggregate

  • groupBy

  • min

  • max

  • mean

  • sum

String

  • leftpad

  • rightpad

  • pad

  • trim

  • split

  • replace

  • match

  • test

  • newlines

  • capitalize

  • upperfirst

  • template

  • encodeURI

  • encodeURIComponent

  • decodeURI

  • decodeURIComponent

  • repeat

  • truncate

  • slugify

  • stripTags

  • latinize

  • wrap

  • with

  • reverseStr

Object

  • keys

  • toArray

  • defaults

Install

npm

npm install angular-pipes --save

How to use

Check the documentation for how to import your pipes in your NgModule and how to use individual pipes.

Tests

npm install
npm test

License

MIT

NextIntroduction

Last updated 4 years ago

Was this helpful?