collectype / utils/pipe/pipeFunctions / isReserved
isReserved(
methodName):methodName is ReservedMethods
Defined in: utils/pipe/pipeFunctions.ts:15
Returns true if the given method name is reserved and cannot be used in pipe expressions.
The method name to check
methodName is ReservedMethods
True if the method is reserved, false otherwise
isReserved('map'); // true
isReserved('customMethod'); // false