UNPKG

lambda-response-template

Version:

💬 A tiny utility for creating AWS Lambda response objects.

4 lines (3 loc) • 144 B
export function isString(x: any): boolean { return (typeof x !== 'undefined') && (Object.prototype.toString.call(x) === '[object String]'); }