UNPKG
go-image-go
Version:
latest (1.0.1)
1.0.1
1.0.0
A powerful package to get images from Google.
go-image-go
/
examples
/
index.js
9 lines
(6 loc)
•
168 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
google =
require
(
"../lib/troy"
);
async
function
start
(
) {
const
images =
await
google.
search
(
"Among Us"
, {
safe
:
false
});
console
.
log
(images); }
start
();