doesNotStartWith()
doesNotStartWith(
a
): (arg
) =>boolean
Determine if first string does not start with the second string.
Parameters
a
string
The first string to check against.
Returns
Function
Parameters
arg
string
Returns
boolean
Remarks
pure function
Example
doesNotStartWith('b7a70c6346b5')('b7a7'); // false
doesNotStartWith('471aead1ae80')('b7a7'); // true