tickbin-filter-parser

0.0.4 • Public • Published

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, MemoryLeaf Media Inc.

Lead Maintainer: Jonathan Bowers

Readme

Keywords

none

Package Sidebar

Install

npm i tickbin-filter-parser

Weekly Downloads

0

Version

0.0.4

License

AGPL-3.0

Last publish

Collaborators

  • chadfawcett
  • jonotron