Sha256: 30064ae575db056ce1dc43f1301a4ad09515fd725b52ba56cac1f2e2f806105b
Contents?: true
Size: 183 Bytes
Versions: 20
Compression:
Stored size: 183 Bytes
Contents
'use strict'; var path = require('path'); var isglob = require('is-glob'); module.exports = function globParent(str) { while (isglob(str)) str = path.dirname(str); return str; };
Version data entries
20 entries across 20 versions & 3 rubygems