Newer
Older
vmk-demo-bot / admin / node_modules / es5-ext / string / # / ends-with / is-implemented.js
@eugene-sukhodolskiy eugene-sukhodolskiy on 15 Jul 201 bytes init
"use strict";

var str = "razdwatrzy";

module.exports = function () {
	if (typeof str.endsWith !== "function") return false;
	return str.endsWith("trzy") === true && str.endsWith("raz") === false;
};