1.0.2 • Published 7 years ago

py-globals v1.0.2

Weekly downloads
3
License
ISC
Repository
-
Last release
7 years ago

py-globals

py-globals empowers us to use all global functions available in python.

Usage

let py = require('py-globals');

py.range(5);

// gives [ 0, 1, 2, 3, 4 ]

for(let r of py.range(5)){
	console.log(r);
}


py.max(5, 7);
// gives 7

This is still under dev and more stable versions to come in near future.

1.0.2

7 years ago

1.0.1

7 years ago

1.0.4

7 years ago