Sha256: 17abe9590176305dd04316b2ac5c972dcf54cea32d279f955fbcf25098743dc8

Contents?: true

Size: 694 Bytes

Versions: 29

Compression:

Stored size: 694 Bytes

Contents

'use strict'

const fs = require('graceful-fs')

function symlinkType (srcpath, type, callback) {
  callback = (typeof type === 'function') ? type : callback
  type = (typeof type === 'function') ? false : type
  if (type) return callback(null, type)
  fs.lstat(srcpath, (err, stats) => {
    if (err) return callback(null, 'file')
    type = (stats && stats.isDirectory()) ? 'dir' : 'file'
    callback(null, type)
  })
}

function symlinkTypeSync (srcpath, type) {
  let stats

  if (type) return type
  try {
    stats = fs.lstatSync(srcpath)
  } catch {
    return 'file'
  }
  return (stats && stats.isDirectory()) ? 'dir' : 'file'
}

module.exports = {
  symlinkType,
  symlinkTypeSync
}

Version data entries

29 entries across 26 versions & 3 rubygems

Version Path
rapid_stack-0.2.0 templates/frontend/node_modules/@ionic/utils-subprocess/node_modules/fs-extra/lib/ensure/symlink-type.js
rapid_stack-0.2.0 templates/frontend/node_modules/@ionic/utils-fs/node_modules/fs-extra/lib/ensure/symlink-type.js
rapid_stack-0.1.1 templates/FrontEnd/node_modules/@ionic/utils-subprocess/node_modules/fs-extra/lib/ensure/symlink-type.js
rapid_stack-0.1.1 templates/FrontEnd/node_modules/@ionic/utils-fs/node_modules/fs-extra/lib/ensure/symlink-type.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/@ionic/utils-fs/node_modules/fs-extra/lib/ensure/symlink-type.js
rapid_stack-0.1.0 templates/FrontEnd/node_modules/@ionic/utils-subprocess/node_modules/fs-extra/lib/ensure/symlink-type.js
reed_sdk-1.0.1 node_modules/fs-extra/lib/ensure/symlink-type.js
reed_sdk-1.0.0 node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.72.2 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.72.1 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.72.0 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.71.0 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.70.2 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.70.1 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.70.0 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.69.0 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.68.2 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.68.1 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.68.0 ./node_modules/fs-extra/lib/ensure/symlink-type.js
appmap-0.67.1 ./node_modules/fs-extra/lib/ensure/symlink-type.js