Skip to content

neulandagentur/adobe-stock-image-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Helper function that returns an author of an adobe stock image id.


Install

npm i adobe-stock-image-bot

Usage

const getAuthor = require('adobe-stock-image-bot');

const test = '184567447';

(async () => {
    const author = await getAuthor(test);
    console.log(author);
})();