📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP →

create-projeto-estudos

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-projeto-estudos - npm Package Compare versions

Comparing version

to
0.1.9

declare global {
export function readInt(text?: string | null): number;
export function readFloat(text?: string | null): number;
export function readString(text?: string | null): number;
export function readBool(text?: string | null): number;
export function readString(text?: string | null): string;
export function readBool(text?: string | null): boolean;
export function write(text?: any): void;

@@ -7,0 +7,0 @@ export function writeLine(text?: any): void;

@@ -10,11 +10,11 @@ const {

globalThis.readInt = readInt;
globalThis.read = read;
globalThis.readString = read;
globalThis.readBool = readBool;
globalThis.readFloat = readFloat;
globalThis.readInt = (msg = "") => readInt(msg);
globalThis.read = (msg = "") => read(msg);
globalThis.readString = (msg = "") => read(msg);
globalThis.readBool = (msg = "") => readBool(msg);
globalThis.readFloat = (msg = "") => readFloat(msg);
globalThis.write = write;
globalThis.writeLine = writeline;
globalThis.writeline = writeline;
console.log("Iniciando...\n")
process.stdout.write('\x1Bc')
console.log("Iniciando...\n");
{
"name": "create-projeto-estudos",
"version": "0.1.8",
"version": "0.1.9",
"bin": "./index.js",

@@ -5,0 +5,0 @@ "dependencies": {