pushy-me
Version:
pushy-me is a simple push notification service for Node.js
11 lines (10 loc) • 311 B
JavaScript
;
/**
* Validate API Key
* @param apiKey Your Pushy API key
* @returns boolean
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.isValideApiKey = void 0;
const isValideApiKey = (apiKey) => apiKey.match(/^[0-9a-zA-Z]+$/) !== null;
exports.isValideApiKey = isValideApiKey;