Skip to content

Commit d893974

Browse files
committed
Refactor
1 parent e553ce0 commit d893974

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/pipe-function/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@simfyz/pipe-function",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"author": "Fayas Ismail (https://github.com/simfyz)",
55
"description": "Pipe operator to execute functions from the template.",
66
"homepage": "https://github.com/simfyz/ng-pipe-function#readme",

projects/pipe-function/src/lib/pipe-function.pipe.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {Pipe, PipeTransform} from '@angular/core';
44
name: 'pipeFunction',
55
standalone: true
66
})
7-
export class NgxPipeFunctionPipe implements PipeTransform {
7+
export class NgxFunctionPipe implements PipeTransform {
88
public transform(value: any, handler: (value: any) => any, context?: any): any {
99
if (context) {
1010
return handler.call(context, value);

0 commit comments

Comments
 (0)