Sign in
chromium
/
devtools
/
devtools-frontend
/
40fcb9a9aae81ac1df2c19dee467ab3a4cf4088b
/
.
/
node_modules
/
postcss-selector-parser
/
dist
/
sortAscending.js
blob: 7af2fec8f4a4ab8616059590029d3acfa048b8cf [
file
]
"use strict"
;
exports
.
__esModule
=
true
;
exports
.
default
=
sortAscending
;
function
sortAscending
(
list
)
{
return
list
.
sort
(
function
(
a
,
b
)
{
return
a
-
b
;
});
}
;
module
.
exports
=
exports
.
default
;