UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

10 lines (9 loc) 345 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sortObjectByKeys = sortObjectByKeys; function sortObjectByKeys(originalObject) { const keys = Object.keys(originalObject).sort(); const sortedObject = {}; keys.forEach((key) => (sortedObject[key] = originalObject[key])); return sortedObject; }