We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91f55b0 commit f4f5fb2Copy full SHA for f4f5fb2
packages/ember-css-modules/lib/htmlbars-plugin/utils.js
@@ -80,34 +80,6 @@ function pushAll(target, arr) {
80
return target;
81
}
82
83
-function getValue(path) {
84
- if (!path) return;
85
-
86
- if ('value' in path) {
87
- return path.value;
88
- }
89
90
- /**
91
- * Deprecated in ember 5.9+
92
- * (so we use the above for newer embers)
93
- */
94
- return path.original;
95
-}
96
97
-function setValue(node, value) {
98
- if (!node) return;
99
100
- if ('value' in node) {
101
- node.value = value;
102
- } else {
103
104
105
106
107
- node.original = value;
108
109
110
111
module.exports = {
112
pushAll: pushAll,
113
getPair: getPair,
0 commit comments