UNPKG

mocked-js

Version:

a light mock server for developer.

15 lines (13 loc) 317 B
const chalk = require('chalk'); module.exports = { head: '[Mocked] ', error (msg) { console.log(`${chalk.red(this.head + msg)}`); }, info (msg) { console.log(`${chalk.cyan(this.head + msg)}`); }, success (msg) { console.log(`${chalk.green(this.head + msg)}`); } }