]> git.evergreen-ils.org Git - Evergreen.git/blob - Evergreen/circ_rules/script_libs.js
sample permit script for circ and a file of utility functions for the circ scripts
[Evergreen.git] / Evergreen / circ_rules / script_libs.js
1 function is_true(item) {
2         return !is_false(item);
3 }
4
5 function is_false(item) { 
6         if( ! item ) return true;
7         if( item.match(/0/) ) return true;
8         false;
9 }