lorem-ipsum
Version:
Generates passages of lorem ipsum text suitable for use as placeholder copy in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.
15 lines (12 loc) • 325 B
text/typescript
import { CANNOT_DETERMINE_PLATFORM } from "../constants/errors";
/**
* @returns The process platform.
* @throws
*/
const getPlatform = (): string => {
if (!process || typeof process.platform !== "string") {
throw new Error(CANNOT_DETERMINE_PLATFORM);
}
return process.platform;
};
export default getPlatform;