-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(package.json): remove @approvals-cloud prefix
- Loading branch information
Showing
2 changed files
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,7 @@ | |
|
||
> Another simple parser for advanced search query syntax. | ||
> This version is a fork of https://github.com/mixmaxhq/search-string but it is actively maintained and uses TypeScript. | ||
[![npm version](https://badge.fury.io/js/%40approvals-cloud%2Fadvanced-search-query.svg)](https://badge.fury.io/js/%40approvals-cloud%2Fadvanced-search-query) | ||
[![npm version](https://badge.fury.io/js/advanced-search-query.svg)](https://badge.fury.io/js/advanced-search-query) | ||
|
||
It parses typical Gmail-style search strings like: | ||
|
||
|
@@ -17,13 +15,13 @@ And returns an instance which can be mutated, return different data structures, | |
## Installation | ||
|
||
```shell | ||
$ yarn add @approvals-cloud/advanced-search-query | ||
$ yarn add advanced-search-query | ||
``` | ||
|
||
## Usage | ||
|
||
```javascript | ||
const AdvancedSearchQuery = require('@approvals-cloud/advanced-search-query') | ||
import AdvancedSearchQuery from 'advanced-search-query' | ||
|
||
// Perform parsing | ||
const str = 'to:me -from:[email protected] foobar1 -foobar2' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters