UNPKG

@opra/common

Version:
11 lines (10 loc) 230 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.stringCompare = stringCompare; function stringCompare(a, b) { if (a < b) return -1; if (a > b) return 1; return 0; }