UNPKG
splicings
Version:
latest (1.0.0)
1.0.0
A test.js project
splicings
/
index.js
10 lines
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
splicing
(
val1
) {
let
as
=
'1=1'
; val1.
forEach
(
(
it, i
) =>
{
if
(it.
value
)
as
+=
" and "
+ it.
name
+
"'"
+ it.
value
+
"'"
; })
return
as
}
module
.
exports
= { splicing }