mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 02:58:36 +00:00
8 lines
201 B
JavaScript
Vendored
8 lines
201 B
JavaScript
Vendored
"use strict";
|
|
|
|
var str = "razdwatrzy";
|
|
|
|
module.exports = function () {
|
|
if (typeof str.endsWith !== "function") return false;
|
|
return str.endsWith("trzy") === true && str.endsWith("raz") === false;
|
|
};
|