mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 21:34:06 -06:00
8 lines
181 B
JavaScript
8 lines
181 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (t, a) {
|
|
a(t.call("AA", "aa"), 0, "Same");
|
|
a.ok(t.call("Amber", "zebra") < 0, "Less");
|
|
a.ok(t.call("Zebra", "amber") > 0, "Greater");
|
|
};
|