diff --git a/lib/node_modules/@stdlib/regexp/dirname/lib/main.js b/lib/node_modules/@stdlib/regexp/dirname/lib/main.js index c6f62e9a260e..851e1cbb459e 100644 --- a/lib/node_modules/@stdlib/regexp/dirname/lib/main.js +++ b/lib/node_modules/@stdlib/regexp/dirname/lib/main.js @@ -50,7 +50,7 @@ var isPlatform = contains( PLATFORMS ); function reDirname( platform ) { if ( arguments.length > 0 ) { if ( !isPlatform( platform ) ) { - throw new Error( format( 'invalid argument. Must be one of the following: "%s". Value: `%s`.', PLATFORMS.join( '", "' ), platform ) ); + throw new Error( format( 'invalid argument. Must be one of the following: "%s". Value: `%s`.', PLATFORMS.join( '", "' ), platform ) ); } } if ( platform === 'win32' || IS_WINDOWS ) { diff --git a/lib/node_modules/@stdlib/regexp/regexp/docs/types/index.d.ts b/lib/node_modules/@stdlib/regexp/regexp/docs/types/index.d.ts index b8bba9c2d22f..5752b961f5d8 100644 --- a/lib/node_modules/@stdlib/regexp/regexp/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/regexp/regexp/docs/types/index.d.ts @@ -21,7 +21,7 @@ /** * Interface for a regular expression to parse a regular expression string. */ -interface ReNativeFunction { +interface ReRegExp { /** * Returns a regular expression to parse a regular expression string. * @@ -66,7 +66,7 @@ interface ReNativeFunction { * var bool = reRegExp.REGEXP.test( '/^beep$/' ); * // returns true */ -declare var reRegExp: ReNativeFunction; +declare var reRegExp: ReRegExp; // EXPORTS //