New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-pipes

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-pipes - npm Package Compare versions

Comparing version 1.4.0 to 1.4.1

aggregate.ts

14

CHANGELOG.md

@@ -0,1 +1,15 @@

# 1.4.0
## New pipes
* `capitalize`
* `upperfirst`
* `template`
* `encodeURI`
* `encodeURIComponent`
* `repeat`
* `truncate`
* `shuffle`
* `random`
# 1.3.0

@@ -2,0 +16,0 @@

5

index.ts

@@ -8,2 +8,3 @@ /// <reference path="node_modules/angular2/typings/browser.d.ts" />

import { NG2_OBJECT_PIPES } from './object';
import { NG2_AGGREGATE_PIPES } from './aggregate';

@@ -15,2 +16,3 @@ export * from './boolean';

export * from './object';
export * from './aggregate';

@@ -22,3 +24,4 @@ export const NG2_PIPES = [

...NG2_STRING_PIPES,
...NG2_OBJECT_PIPES
...NG2_OBJECT_PIPES,
...NG2_AGGREGATE_PIPES
];

2

package.json
{
"name": "angular-pipes",
"version": "1.4.0",
"version": "1.4.1",
"description": "Angular 2 pipes library",

@@ -5,0 +5,0 @@ "main": "pipes/index.js",

@@ -11,2 +11,3 @@ /// <reference path="node_modules/angular2/typings/browser.d.ts" />

var object_1 = require('./object');
var aggregate_1 = require('./aggregate');
__export(require('./boolean'));

@@ -17,3 +18,4 @@ __export(require('./math'));

__export(require('./object'));
exports.NG2_PIPES = boolean_1.NG2_BOOLEAN_PIPES.concat(math_1.NG2_MATH_PIPES, array_1.NG2_ARRAY_PIPES, string_1.NG2_STRING_PIPES, object_1.NG2_OBJECT_PIPES);
__export(require('./aggregate'));
exports.NG2_PIPES = boolean_1.NG2_BOOLEAN_PIPES.concat(math_1.NG2_MATH_PIPES, array_1.NG2_ARRAY_PIPES, string_1.NG2_STRING_PIPES, object_1.NG2_OBJECT_PIPES, aggregate_1.NG2_AGGREGATE_PIPES);
//# sourceMappingURL=index.js.map

@@ -35,2 +35,3 @@ [![NPM Version](https://img.shields.io/npm/v/angular-pipes.svg)](https://npmjs.org/package/angular-pipes)

* [`every`](./docs/array.md#every)
* [`shuffle`](./docs/array.md#shuffle) (to be documented)

@@ -69,3 +70,4 @@

* [`degrees`](./docs/math.md#degrees)
* [`radians`](./docs/math.md#degrees)
* [`radians`](./docs/math.md#radians)
* [`random`](./docs/math.md#random) (to be documented)

@@ -83,2 +85,9 @@ ### String

* [`newlines`](./docs/string.md#newlines)
* [`capitalize`](./docs/string.md#capitalize) (to be documented)
* [`upperfirst`](./docs/string.md#upperfirst) (to be documented)
* [`template`](./docs/string.md#template) (to be documented)
* [`encodeURI`](./docs/string.md#encodeuri) (to be documented)
* [`encodeURIComponent`](./docs/string.md#encodeuricomponent) (to be documented)
* [`repeat`](./docs/string.md#repeat) (to be documented)
* [`truncate`](./docs/string.md#truncate) (to be documented)

@@ -85,0 +94,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc