Skip to content

chadfawcett/filter-parser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

A simple first pass parser to take strings that look like "#tag1 and #tag2 Jan - Feb" and convert them to strings (with the date portion extracted out) so that they can be recombined in such a way that jouch can use them to generate a tickbin specific couch db 2.0 query selector.

Install

npm install tickbin-filter-parser

Usage

import parse from 'tickbin-filter-parser'

const {parsed, dates} = parse('#dog or #cat Jan - Feb')
// parsed = "tags has '#dog' or tags has '#cat'
// dates = [{
//  start: Date('2016-01-01'), 
//  end: Date('2016-02-29'), 
//  text: '(startArr >= [2016,0,1,0,0,0,0] and startArr <= [2016,1,29,23,59,59,999])'
// ]}

Building

npm install
npm test
npm run build

Copyright © 2016, Two Story Robot Labs Inc.

Lead Maintainer: Jonathan Bowers

About

parse strings into filters

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%