UNPKG
compare-two-strings-1
Version:
latest (1.0.0)
1.0.0
Checking two strings are same or not
github.com/sarthu210/compare_package
sarthu210/compare_package
compare-two-strings-1
/
index.js
13 lines
(12 loc)
•
181 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function
compare
(string1 ,string2)
{
if
(string1 === string2) {
return
true
; }
else
{
return
false
; } }
module
.
exports
= compare;