Sha256: 0bded6bcd55a369fe64b1e69e02ed9e4550f584b1373ff6085f360e24880b3a9
Contents?: true
Size: 191 Bytes
Versions: 27
Compression:
Stored size: 191 Bytes
Contents
'use strict'; module.exports = string => { const match = string.match(/^[ \t]*(?=\S)/gm); if (!match) { return 0; } return match.reduce((r, a) => Math.min(r, a.length), Infinity); };
Version data entries
27 entries across 27 versions & 2 rubygems