Skip to content

Commit

Permalink
refactor(guardIs {}): add guardStringLengthBetween.
Browse files Browse the repository at this point in the history
  • Loading branch information
angularpackage committed Jan 29, 2022
1 parent f0f7f46 commit 8679b4c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/guard/lib/guard-is.object.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import { guardString } from './guard-string.func';
import { guardStringIncludes } from './guard-string-includes.func';
import { guardStringIncludesSome } from './guard-string-includes-some.func';
import { guardStringLength } from './guard-string-length.func';
import { guardStringLengthBetween } from './guard-string-length-between.func';
import { guardSymbol } from './guard-symbol.func';
import { guardTrue } from './guard-true.func';
import { guardType } from './guard-type.func';
Expand Down Expand Up @@ -57,6 +58,7 @@ export const guardIs: GuardIs = Object.freeze({
stringIncludes: guardStringIncludes,
stringIncludesSome: guardStringIncludesSome,
stringLength: guardStringLength,
stringLengthBetween: guardStringLengthBetween,
symbol: guardSymbol,
true: guardTrue,
type: guardType,
Expand Down

0 comments on commit 8679b4c

Please sign in to comment.