UNPKG

universal-fs

Version:

Allows a client or server to access the file system in the current codebase or a different one.

8 lines (7 loc) 208 B
/** * Check if a string is json * @param str The string to check * @returns A boolean if true the string is valid otherwise false */ declare const isJson: (str: string) => boolean; export default isJson;