UNPKG

@writ/utils

Version:
10 lines (9 loc) 200 B
'use strict'; /** * tab转空格 * @param {string} str */ function tab2space(str) { return str.replace(/\t*/g, '\t'.split(/\s/g).reduce(c => c + ' ', '')); } module.exports = tab2space;