(obj: unknown)
| 9 | import type { IDataSourceRuntimeContext, InterpretDataSourceConfig, RuntimeOptionsConfig } from './types' |
| 10 | |
| 11 | function isObject(obj: unknown) { |
| 12 | return Object.prototype.toString.call(obj).indexOf('Object') !== -1 |
| 13 | } |
| 14 | |
| 15 | export const transformExpression = (code: string, context: IDataSourceRuntimeContext) => { |
| 16 | // 补充异常情况兼容性 |