Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vepo/smart-calculator


https://github.com/vepo/smart-calculator

Last synced: about 7 hours ago
JSON representation

Awesome Lists containing this project

README

        

# Smart Calculator

Criar um pequeno framework contendo formas avançadas de configuração!!!

```
> 2 + 5
= 7
```

Adicionar hookpoints!!!!

```javascript
function onExpression(value1, operator, value2) {
return null;
}

function onExpression(value1, operator, value2) {
print("EXPR:" + value1 + operator + value2);
return eval(value1 + operator + value2)
}
```