s54a / printLikePython

Allows you to do this in Javascript print('python')

Home Page:https://www.npmjs.com/package/printlikepython

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

printLikePython

Do console.log() with just print()

Installation

npm i p13n

or

npm i printLikePython

How to Use

const print = require("printLikePython");

print("Hello from printLikePython");

Below is the code in the printLikePython index.js file

function print(val) {
  return console.log(val);
}

module.exports = print;

About

Allows you to do this in Javascript print('python')

https://www.npmjs.com/package/printlikepython

License:MIT License


Languages

Language:JavaScript 100.0%