Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@aretecode/flipfile / src / index.ts
Size: Mime:
import * as fs from 'fs'
import * as path from 'path'
import { isAbsolute } from 'path'
import mkdirp from 'mkdirp'
// import { unique, along, within, contains } from 'node-path-extras'
import { getFileAndPath } from './getFileAndPath'
import { getDirectories } from './getDirectories'
import { isDir } from './isDir'
import { isFile } from './isFile'
import { isRel } from './isRel'
import { walk } from './walk'
import { read, tryJSON, readJSON } from './read'
import write from './write'
import exists from './exists'
import fileName from './fileName'
import { isFileOrDir } from './isFileOrDir'
import { del } from './del'

export {
  getFileAndPath,
  getFileAndPath as fileAndDir,
  getDirectories,
  isDir,
  isFile,
  isRel,
  walk,
  read,
  readJSON,
  write,
  exists,
  fileName,
  isFileOrDir,
  isAbsolute,
  isAbsolute as isAbs,
  mkdirp,
  path,
  fs,
  del,
}
export * from 'fs'
export * from 'path'