You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+16
Original file line number
Diff line number
Diff line change
@@ -73,9 +73,25 @@ const s = new MagicString(someCode, {
73
73
],
74
74
// mark source as ignore in DevTools, see below #Bundling
75
75
ignoreList:false,
76
+
// adjust the incoming position - see below
77
+
offset:0,
76
78
});
77
79
```
78
80
81
+
## Properties
82
+
83
+
### s.offset
84
+
85
+
Sets the offset property to adjust the incoming position for the following APIs: `slice`, `update`, `overwrite`, `appendLeft`, `prependLeft`, `appendRight`, `prependRight`, `move`, `reset`, and `remove`.
86
+
87
+
Example usage:
88
+
89
+
```ts
90
+
const s =newMagicString('hello world', { offset: 0 });
0 commit comments