aboutsummaryrefslogtreecommitdiff
path: root/node_modules/convert-to-spaces/index.js
blob: b61b17f0d38c19ae73801266df51744ea66be523 (plain)
1
2
3
4
5
'use strict';

module.exports = (str, spaces) => {
	return str.replace(/^\t+/gm, $1 => ' '.repeat($1.length * (spaces || 2)));
};