vartoNumber=require('./toNumber');/** * Creates a function that performs a relational operation on two values. * * @private * @param {Function} operator The function to perform the operation. * @returns {Function} Returns the new relational operation function. */functioncreateRelationalOperation(operator){returnfunction(value,other){if(!(typeofvalue=='string'&&typeofother=='string')){value=toNumber(value);other=toNumber(other);}returnoperator(value,other);};}module.exports=createRelationalOperation;