Metadata-Version: 2.1
Name: js-array
Version: 0.0.1
Summary: A basic Python module that brings the attributes and methods of a Javascript array to Python.
Home-page: https://github.com/jay3332/js-array
Author: jay3332
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# js-array
Basic Python module that brings the attributes and methods of a Javascript array to Python.
## Usage
Example usage:
```py
from jsarray import JSArray

array = JSArray(range(10))
(
  array
  .map(lambda item: item**2)
  .filter(lambda item: item % 2 == 0)
  .for_each(print)
)


