diff options
| author | Akshay Nair <phenax5@gmail.com> | 2022-02-17 19:14:57 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2022-02-17 19:14:57 +0530 |
| commit | 79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0 (patch) | |
| tree | f1e0629c8d80d1e281d1e48c853d3550ac07cc6b | |
| parent | dd3688f166d660df36a6ffda9fda755877ed2665 (diff) | |
| download | elxr-79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0.tar.gz elxr-79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0.zip | |
chore: changes project name
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | package.json | 4 |
2 files changed, 6 insertions, 4 deletions
@@ -1,6 +1,6 @@ -# ListExp [ WIP ] +# Elxr (List expressions) -Regular expression-like syntax for list operations. Toy project experimenting with generalizing regex-like operations to a list. +Regular expression-like syntax for list operations. An experiment generalizing regex-like operations to a list. [](https://forthebadge.com) [](https://forthebadge.com) @@ -13,6 +13,8 @@ Whitespaces are ignored (except within literals) * `\s` => Any **string** * `\n` => Any **number** * `\b` => Any **boolean** +* `\o` => Any **object** (has to be a record) [TODO] +* `\a` => Any **array** [TODO] * `\T` => Any **truthy** value * `\F` => Any **falsey** value * `a|b` => match `a` **or** `b` diff --git a/package.json b/package.json index 0977c8f..fd85bcb 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "list-exp", + "name": "elrx", "version": "0.0.0", "description": "__", "main": "lib/index.js", "types": "lib/index.d.ts", - "repository": "https://github.com/phenax/list-exp.git", + "repository": "https://github.com/phenax/elrx.git", "author": "Akshay Nair <phenax5@gmail.com>", "license": "MIT", "scripts": { |
