(prop: string)
| 376 | } |
| 377 | |
| 378 | const isServerAccess = (prop: string) => { |
| 379 | if (!opts.clientPrefix) return true; |
| 380 | return !prop.startsWith(opts.clientPrefix) && !(prop in _shared); |
| 381 | }; |
| 382 | const isValidServerAccess = (prop: string) => { |
| 383 | return isServer || !isServerAccess(prop); |
| 384 | }; |
no outgoing calls
no test coverage detected