Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 438 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 438 Bytes

Dependency Status devDependency Status

Example

const dwordpress = require('dwordpress')('url');
dwordpress('query', (posts, users) => {
  for (const post of posts) {
    const user = users[post.author];
  }
});