1.0.0 • Published 6 years ago

vccsievejs v1.0.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

sieve.js

Javascript library to wrap sieve configuration

Simple repreentation

{
    Operator: {
        label: '',
        value: 'AllOf' // 'AnyOf'
    },
    Conditions: [
        {
            Comparator: {
                value: 'contains' // 'is', 'matches', 'starts', 'ends'
            },
            Values: ['thomas.anderson@protonmail.com']
        }
    ],
    Actions: {
        FileInto: ['trash'],
        Mark: {
            Read: false,
            Starred: false
        },
        Vacation: 'Not here for few days'
    }
}