This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/boolbase
cranberry ed23347e56 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
..
README.md Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
index.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
package.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00

README.md

#boolbase This very simple module provides two basic functions, one that always returns true (trueFunc) and one that always returns false (falseFunc).

###WTF?

By having only a single instance of these functions around, its possible to do some nice optimizations. Eg. CSSselect uses these functions to determine whether a selector wont match any elements. If thats the case, the DOM doesnt even have to be touched.

###And why is this a separate module?

Im trying to modularize CSSselect and most modules depend on these functions. IMHO, having a separate module is the easiest solution to this problem.