1.0.10 • Published 1 year ago

mult18 v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year 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

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago