aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2022-02-17 19:14:57 +0530
committerAkshay Nair <phenax5@gmail.com>2022-02-17 19:14:57 +0530
commit79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0 (patch)
treef1e0629c8d80d1e281d1e48c853d3550ac07cc6b
parentdd3688f166d660df36a6ffda9fda755877ed2665 (diff)
downloadelxr-79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0.tar.gz
elxr-79813bc3b5ea78bffcc8f3a48ff6ecd15d966bd0.zip
chore: changes project name
-rw-r--r--README.md6
-rw-r--r--package.json4
2 files changed, 6 insertions, 4 deletions
diff --git a/README.md b/README.md
index aaf9190..2380be8 100644
--- a/README.md
+++ b/README.md
@@ -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.
[![forthebadge](https://forthebadge.com/images/badges/you-didnt-ask-for-this.svg)](https://forthebadge.com)
[![forthebadge](https://forthebadge.com/images/badges/kinda-sfw.svg)](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": {