mirror of
https://github.com/cp6/my-idlers.git
synced 2025-06-08 01:58:09 +00:00
8 lines
207 B
JavaScript
8 lines
207 B
JavaScript
"use strict";
|
|
|
|
var str = "razdwatrzy";
|
|
|
|
module.exports = function () {
|
|
if (typeof str.startsWith !== "function") return false;
|
|
return str.startsWith("trzy") === false && str.startsWith("raz") === true;
|
|
};
|