UNPKG

json-server

Version:

Get a full fake REST API with zero coding in less than 30 seconds

16 lines (15 loc) 229 B
"use strict"; module.exports = { FILE, JS, URL }; function FILE(s) { return !URL(s) && /\.json$/.test(s); } function JS(s) { return !URL(s) && /\.c?js$/.test(s); } function URL(s) { return /^(http|https):/.test(s); }