@dofiltra/helpers
Advanced tools
Comparing version 1.0.63 to 1.0.64
@@ -77,3 +77,3 @@ import type { TDodecoratorSettings, TResultError, TTrackMetadata } from '@dofiltra/types'; | ||
}): string; | ||
static removeNumberingAndPunctuation: (str: string) => string; | ||
static rmNumberingAndPunctuation: (str: string) => string; | ||
static rmWhileChars({ text, search, replace }: { | ||
@@ -80,0 +80,0 @@ text: string; |
@@ -172,3 +172,3 @@ /* tslint:disable:max-classes-per-file */ | ||
} | ||
static removeNumberingAndPunctuation = (str) => { | ||
static rmNumberingAndPunctuation = (str) => { | ||
const withoutNumbering = str.replace(/^\d+.\s*/, ''); | ||
@@ -175,0 +175,0 @@ const withoutPunctuation = withoutNumbering.replace(/^\d+.\s*([^\d\s\w])/g, ''); |
{ | ||
"name": "@dofiltra/helpers", | ||
"version": "1.0.63", | ||
"version": "1.0.64", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
117027