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.
20 lines (15 loc) • 376 B
text/typescript
class ProcessHelper {
public cachedPlatform: string;
constructor() {
this.cachedPlatform = process.platform;
}
public resetPlatform() {
this.setPlatform(this.cachedPlatform);
}
public setPlatform(platform?: string) {
Object.defineProperty(process, "platform", {
value: platform,
});
}
}
export default ProcessHelper;