You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2021. It is now read-only.
I would like to test function that return 'squel' query/expr object so I think there should be a method to compare identity between 'squel' products. Somthing like this :
const exp1 = squel.expr().and('age = ?', 54).and('salary >', 10000);
I would like to test function that return 'squel' query/expr object so I think there should be a method to compare identity between 'squel' products. Somthing like this :
const exp1 = squel.expr().and('age = ?', 54).and('salary >', 10000);
const exp2 = squel.expr().and('age = ?', 54).and('salary >', 10000);
expr1.isEqual(exp2) // true
The text was updated successfully, but these errors were encountered: