Urara-Blog/node_modules/.pnpm-store/v3/files/d2/ecfb36e0b58912a90806c80201e53329f9d2f0f87d0c7889c0b94da05bfc414856b49466c1a9a37b95db9a22a74c518cc4db0c3b924fa6071555feaede147c
2022-08-14 01:14:53 +08:00

14 lines
257 B
Text

'use strict';
const minIndent = require('min-indent');
module.exports = string => {
const indent = minIndent(string);
if (indent === 0) {
return string;
}
const regex = new RegExp(`^[ \\t]{${indent}}`, 'gm');
return string.replace(regex, '');
};