UNPKG
yemot-api
Version:
beta (4.0.0-beta-1)
latest (3.2.0)
4.0.0-beta-1
4.0.0-beta
3.2.0
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.0
```bash npm i yemot-api ```
github.com/MusiCode1/yemot-api
MusiCode1/yemot-api
yemot-api
/
lib
/
ulit.js
12 lines
(8 loc)
•
205 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
= { ini_from_obj };
function
ini_from_obj
(
obj
) {
let
arr = [];
for
(
const
i
of
Object
.
entries
(obj)) { arr.
push
(i.
join
(
"="
)); }
return
arr.
join
(
"\n"
); }