UNPKG

@dillonkearns/elm-graphql

Version:

<img src="https://cdn.jsdelivr.net/gh/martimatix/logo-graphqelm/logo.svg" alt="dillonearns/elm-graphql logo" width="40%" align="right">

23 lines (18 loc) 599 B
// 'use strict'; const path = require('path'); const isDirectory = require('is-directory'); function getDirectory(filepath ) { return new Promise((resolve, reject) => { return isDirectory(filepath, (err, filepathIsDirectory) => { if (err) { return reject(err); } return resolve(filepathIsDirectory ? filepath : path.dirname(filepath)); }); }); } getDirectory.sync = function getDirectorySync(filepath ) { return isDirectory.sync(filepath) ? filepath : path.dirname(filepath); }; module.exports = getDirectory;