flipper-plugin
Version:
Flipper Desktop plugin SDK and components
20 lines • 710 B
JavaScript
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getSortedKeys = void 0;
const string_natural_compare_1 = __importDefault(require("string-natural-compare"));
function getSortedKeys(obj) {
return Object.keys(obj).sort(string_natural_compare_1.default);
}
exports.getSortedKeys = getSortedKeys;
//# sourceMappingURL=utils.js.map
;