UNPKG

328 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const lodash_1 = require("lodash");
4const path_1 = require("path");
5const splitRegex = new RegExp(path_1.sep, 'g');
6function lastDirname(path) {
7 return lodash_1.last((path || process.cwd()).split(splitRegex));
8}
9exports.lastDirname = lastDirname;