@livy/util
Version:
Common utilities for the Livy logger
13 lines (12 loc) • 299 B
TypeScript
/**
* Check whether the current runtime is Node.js
*/
export declare const isNodeJs: boolean;
/**
* Check whether the current runtime is a browser (or JSDOM)
*/
export declare const isBrowser: boolean;
/**
* The appropriate line ending character(s) to use
*/
export declare const EOL: string;