mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-05-21 09:27:07 +00: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");
|
|
};
|