js-custom-operators

1.1.11 • Public • Published

js-custom-operators

Support me on Patreon Buy me a book PayPal Ask me anything Version Downloads Get help on Codementor

Buy Me A Coffee

Create your own operators in JavaScript

Introduction

During the Math classes we learned how to define new operators. For example:

(ℝ, ∘), x ∘ y = x + 2y

This defines law. For any real numbers x and y, x ∘ y is x + 2y. e.g: 2 ∘ 2 = 2 + 4 = 6.

Custom operators in JavaScript?

This projects finally bring this feature in the JavaScript world! :-) Using esprima - which takes JS code and generates the syntax tree for it - and escodegen - which does the other direction, generating JS code from the syntax tree esprima spits - we can create new JavaScript operators.

Example

Having two arrays:

var x = [1, 2, 3, 4, 5]
  , y = [3, 5, 6, 1]
  ;

we want to find the intersection of them (that is [1, 3, 5]).

We can easily create a function function foo (x, y) { ... }, but why not create an operator instead?

Then x ⋂ y will return the same thing. :-)

Live demo

You can try this application online clicking here.

js-custom-operators

❓ Get Help

There are few ways to get help:

  1. Please post questions on Stack Overflow. You can open issues with questions, as long you add a link to your Stack Overflow question.
  2. For bug reports and feature requests, open issues. 🐛
  3. For direct and quick help, you can use Codementor. 🚀

😋 How to contribute

Have an idea? Found a bug? See how to contribute.

💖 Support my projects

I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously, this takes time. You can integrate and use these projects in your applications for free! You can even change the source code and redistribute (even resell it).

However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:

  • Starring and sharing the projects you like 🚀

  • Buy me a book—I love books! I will remember you after years if you buy me one. 😁 📖

  • PayPal—You can make one-time donations via PayPal. I'll probably buy a coffee tea. 🍵

  • Support me on Patreon—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).

  • Bitcoin—You can send me bitcoins at this address (or scanning the code below): 1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6

Thanks! ❤️

🍰 Thanks

📜 License

MIT © Ionică Bizău

Readme

Keywords

Package Sidebar

Install

npm i js-custom-operators

Weekly Downloads

4

Version

1.1.11

License

MIT

Unpacked Size

8.95 kB

Total Files

3

Last publish

Collaborators

  • ionicabizau