UNPKG

vegan-ipsum

Version:

Generates passages of vegan-themed placeholder text suitable for use in web pages, graphics, and more. Works in the browser, NodeJS, and React Native.

21 lines (16 loc) 444 B
class ProcessHelper { public cachedPlatform: string; constructor() { this.cachedPlatform = process.platform; } public resetPlatform() { this.setPlatform(this.cachedPlatform); } public setPlatform(platform: string = this.cachedPlatform) { Object.defineProperty(process, "platform", { value: platform, configurable: true, // Ensure the property can be redefined }); } } export default ProcessHelper;