sass-func 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,8 +16,8 @@ npm install sass-func
16
16
 
17
17
  ## Modules
18
18
 
19
- | Module | Import path | Description |
20
- | ------------------- | ----------------------------------- | -------------------------------------------------------- |
19
+ | Module | Import path | Description |
20
+ | -------------------------- | ----------------------------------- | -------------------------------------------------------- |
21
21
  | [`list`](#module-list) | [`sass-func/list`](./list.scss) | Functions for creating, transforming, and querying lists |
22
22
  | [`meta`](#module-meta) | [`sass-func/meta`](./meta.scss) | Functions for type inspection and emptiness checking |
23
23
  | [`number`](#module-number) | [`sass-func/number`](./number.scss) | Functions for unit conversion and numeric operations |
@@ -175,8 +175,8 @@ n.add-unit(1, 'rem') // → 1rem
175
175
  Converts a number from one CSS length unit to another.
176
176
 
177
177
  ```scss
178
- n.convert-unit(16px, 'px', 'rem') // → 1rem
179
- n.convert-unit(1in, 'in', 'px') // → 96px
178
+ n.convert-unit(16, 'px', 'rem') // → 1rem
179
+ n.convert-unit(1, 'in', 'px') // → 96px
180
180
  ```
181
181
 
182
182
  ### `resolve-index($index, $length)`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-func",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A collection of Sass utility functions for lists, strings, numbers, and meta — inspired by familiar JS APIs.",
5
5
  "keywords": [
6
6
  "sass",