UNPKG

images-set-to-webp-converter

Version:

Powerful util for images (.png | .jpeg | .jpg) set conversion to .webp, generated by Abobe Images Processor Pro plugin

9 lines (6 loc) 259 B
import isFolder from './isFolder' import { TPath, TNotPathReturn } from '../interfaces/index' const isNotPath = (pathToParse: TPath): TNotPathReturn => { return !pathToParse || pathToParse.length === 0 || !isFolder(pathToParse) } export default isNotPath