sass 1.51.0 → 1.52.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -38,7 +38,8 @@ export type OutputStyle = 'expanded' | 'compressed';
38
38
  * const result = sass.compile('style.scss', {
39
39
  * functions: {
40
40
  * "sum($arg1, $arg2)": (args) => {
41
- * const value1 = args[0].assertNumber('arg1').value;
41
+ * const arg1 = args[0].assertNumber('arg1');
42
+ * const value1 = arg1.value;
42
43
  * const value2 = args[1].assertNumber('arg2')
43
44
  * .convertValueToMatch(arg1, 'arg2', 'arg1');
44
45
  * return new sass.SassNumber(value1 + value2).coerceToMatch(arg1);