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    
@filerobot/utils / lib / isFolder.js
Size: Mime:
var isFolder = function isFolder(item) {
  return (item === null || item === void 0 ? void 0 : item.isFolder) || (item === null || item === void 0 ? void 0 : item.type) === 'folder' || Boolean(item.path);
};
export default isFolder;