(script: Script)
| 35 | }; |
| 36 | |
| 37 | function set(script: Script): CurrentScript { |
| 38 | return { |
| 39 | id: script.id, |
| 40 | collectionId: script.collectionId, |
| 41 | ownerId: script.ownerId, |
| 42 | data: script.data, |
| 43 | isChanged: false, |
| 44 | }; |
| 45 | } |
| 46 | |
| 47 | function unset(): undefined { |
| 48 | return undefined; |
no outgoing calls
no test coverage detected