caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
13 lines (12 loc) • 300 B
TypeScript
/**
* Remove undefined values from an object
* @author Gabe Abrams
* @param {object} obj object to remove values from
* @returns {object} filtered object
*/
declare const removeUndefinedValues: (obj: {
[k: string]: any;
}) => {
[k: string]: any;
};
export default removeUndefinedValues;