UNPKG

@nomadmystic/wordpress-scaffold-cli

Version:

This project is created to speed up WordPress development

12 lines (11 loc) 291 B
import fetch from 'cross-fetch'; export default class RestUtils { static apiGetText(url) { return fetch(url) .then((response) => { return response.text(); }) .then(text => text) .catch((err) => console.error(err)); } }