Code Monkey home page Code Monkey logo

Comments (4)

shomali11 avatar shomali11 commented on July 1, 2024 1

No worries! I figured you missed it haha!

I really like your library. Would you consider exposing an API that tests whether a JSON Object matches the Query? It would return a Boolean.

Currently I am wrapping your API with a method that passes the object in an array into your method and checking whether the length of the resulting array is not 0.

I figured it would be more memory efficient if an “isMatch(query, object) boolean” api was available

from jql.

aprilmintacpineda avatar aprilmintacpineda commented on July 1, 2024

Aha! haha rookie copy-paste mistake :D

from jql.

aprilmintacpineda avatar aprilmintacpineda commented on July 1, 2024

hmmm, can you give an example use case? I don't quite understand...

from jql.

shomali11 avatar shomali11 commented on July 1, 2024

Imagine a case where you get a stream of JSON objects, one by one, and you are scanning each of them to see if they match a specific query. If it’s a match, you process it, if not you ignore it.

so to do this using your library, I created this function

function isMatch(query, object) {
return jql(query, [object]).length !== 0
}

...

Then somewhere in my app,

for (const object of someIterableOrGenerator()) {
if (isMatch(query, object)) {
// Do something with object
}
}

from jql.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.