Sha256: 2fbecff1b60d48026fc6a909514447b7826009a472f0a50f49285532d986be9e
Contents?: true
Size: 257 Bytes
Versions: 50
Compression:
Stored size: 257 Bytes
Contents
'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, ''); };
Version data entries
50 entries across 50 versions & 2 rubygems