itee-validators 6.1.2 → 6.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -37,7 +37,7 @@ export function isNotArray( data ) {
37
37
  }
38
38
 
39
39
 
40
- // #if IS_REMOVE_ON_BUILD
40
+ // #if IS_KEEP_ON_BUILD
41
41
 
42
42
  export function isArray_0( data ) {
43
43
  return data instanceof Array
@@ -62,7 +62,7 @@ export function isNotArrayOfString( data ) {
62
62
 
63
63
  }
64
64
 
65
- // #if IS_REMOVE_ON_BUILD
65
+ // #if IS_KEEP_ON_BUILD
66
66
 
67
67
  export function isArrayOfString_1( data ) {
68
68
 
@@ -36,7 +36,7 @@ export function isNotBoolean( data ) {
36
36
  return ( typeof data !== 'boolean' )
37
37
  }
38
38
 
39
- // #if IS_REMOVE_ON_BUILD
39
+ // #if IS_KEEP_ON_BUILD
40
40
 
41
41
  export function isBoolean_alt( data ) {
42
42
  return typeof data === 'boolean' || ( typeof data === 'object' && data !== null && typeof data.valueOf() === 'boolean' )
@@ -113,7 +113,7 @@ export function isNaN( data ) {
113
113
  }
114
114
 
115
115
 
116
- // #if IS_REMOVE_ON_BUILD
116
+ // #if IS_KEEP_ON_BUILD
117
117
 
118
118
  export function isNumber_0( data ) {
119
119
  return ( typeof data === 'number' && !Number.isNaN( data ) )
@@ -36,7 +36,7 @@ export function isNotString( data ) {
36
36
  return !isString( data )
37
37
  }
38
38
 
39
- // #if IS_REMOVE_ON_BUILD
39
+ // #if IS_KEEP_ON_BUILD
40
40
 
41
41
  export function isString_0( val ) {
42
42
  return ( typeof val === 'string' )
@@ -26,7 +26,7 @@ export function isNull( data ) {
26
26
  return ( data === null )
27
27
  }
28
28
 
29
- // #if IS_REMOVE_ON_BUILD
29
+ // #if IS_KEEP_ON_BUILD
30
30
 
31
31
  export function isNull_0( value ) {
32
32
  return Object.is( value, null )