mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-30 20:20:23 +00:00
8 lines
200 B
JavaScript
8 lines
200 B
JavaScript
"use strict";
|
|
|
|
var str = "razdwatrzy";
|
|
|
|
module.exports = function () {
|
|
if (typeof str.includes !== "function") return false;
|
|
return str.includes("dwa") === true && str.includes("foo") === false;
|
|
};
|