smartstring/ts/smartstring.normalize.ts

23 lines
658 B
TypeScript
Raw Normal View History

2017-10-05 13:55:59 +00:00
import * as plugins from './smartstring.plugins'
/**
* replaces all occurences of something in a string
* @param stringArg
* @param searchRegExp
* @param replacementString
*/
2017-10-26 13:24:10 +00:00
export const replaceAll = (stringArg: string, searchRegExp: any, replacementString: string) => {
2017-10-05 13:55:59 +00:00
return stringArg.replace(new RegExp(searchRegExp, 'g'), replacementString)
}
/**
* normalizes a string
* @param stringArg
*/
2017-10-26 13:24:10 +00:00
export const standard = (stringArg: string): string => {
2017-10-05 13:55:59 +00:00
let fix1 = plugins.stripIndent(stringArg) // fix indention
let fix2 = plugins.normalizeNewline(fix1) // fix newlines
let fix3 = replaceAll(fix2, /\t/, ' ') // fix tabs
return fix3
}