string-matches
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -6,4 +6,4 @@ declare function stringMatches(str: string, regex: RegExp, maxMatches?: number): RegExpExecArray[]; | ||
declare namespace _default { | ||
export type type = stringMatches; | ||
export type type = typeof stringMatches; | ||
} | ||
export = _default; |
{ | ||
"name": "string-matches", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "Retrieves all the matches of a regex in a string.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
{ | ||
"compilerOptions": { | ||
"compilerOptions": { | ||
"alwaysStrict": true, | ||
"declaration": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"declaration": true, | ||
"emitDecoratorMetadata": true, | ||
"experimentalDecorators": true, | ||
"forceConsistentCasingInFileNames": true, | ||
"inlineSourceMap": true, | ||
"lib": ["dom", "scripthost", "es2015", "es2016", "es2017"], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"newLine": "LF", | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitReturns": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": false, | ||
"outDir": "dist", | ||
"pretty": true, | ||
"strictNullChecks": true, | ||
"target": "es5" | ||
}, | ||
"lib": ["dom", "scripthost", "es2015", "es2016", "es2017"], | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"newLine": "LF", | ||
"noFallthroughCasesInSwitch": true, | ||
"noImplicitReturns": true, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": false, | ||
"outDir": "dist", | ||
"pretty": true, | ||
"strictNullChecks": true, | ||
"target": "es5" | ||
}, | ||
"include": [ | ||
@@ -23,0 +23,0 @@ "src" |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7194