UNPKG

azure-mobile-apps-files

Version:

Add simple yet powerful file storage capabilities to the azure-mobile-apps server.

17 lines (15 loc) 580 B
// ---------------------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. // ---------------------------------------------------------------------------- module.exports = { caseInsensitiveProperty: function (target, name) { var result; Object.keys(target).some(function (property) { if(name.toLowerCase() === property.toLowerCase()) { result = target[property]; return true; } }); return result; } }