Musique/node_modules/boolstring/example.html

17 lines
No EOL
366 B
HTML

<html>
<head>
<title>Example</title>
</head>
<body>
<script src="index.js"></script>
<script>
var yesString = "yes";
console.log(boolString(yesString)); // true
var noString = "no";
console.log(boolString(noString)); // false
</script>
</body>
</html>