1.0.10 • Published 2 years ago

mult18 v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Installing

Package manager

Using npm:
npm install axios
Using bower:
bower install axios
Using yarn:
yarn add axios
Using pnpm:
pnpm add axios

Guide

Once the package is installed, you can import the library using require approach:
const { MULT18 } = require('mult18');
const mult18 = new MULT18();
or
import * as MULT18 from 'mult18';
const mult18 = new MULT18();

Endpoints

console.log(mult18.endpoints);

Search image

(async function search(query) {
    var { urls } = await mult18.search({
        query: query,
    });
        console.log(urls);
})();
or
mult18.search({
    query: 'sarahxxx',
}).then(request => console.log(request.urls));
1.0.10

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago