StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
StackGenVis/frontend/node_modules/@interactjs/utils/extend.js.map

17 lines
590 B

4 years ago
{
"version": 3,
"sources": [
"extend.ts"
],
"names": [
"extend",
"dest",
"source",
"prop",
"ret"
],
"mappings": "AAAA,eAAe,SAASA,MAAT,CAAsCC,IAAtC,EAA+CC,MAA/C,EAAiE;AAC9E,OAAK,MAAMC,IAAX,IAAmBD,MAAnB,EAA2B;AACxBD,IAAAA,IAAD,CAAuBE,IAAvB,IAA+BD,MAAM,CAACC,IAAD,CAArC;AACD;;AAED,QAAMC,GAAG,GAAGH,IAAZ;AAEA,SAAOG,GAAP;AACD",
"sourcesContent": [
"export default function extend<T, U extends object> (dest: U, source: T): T & U {\n for (const prop in source) {\n (dest as unknown as T)[prop] = source[prop]\n }\n\n const ret = dest as T & U\n\n return ret\n}\n"
]
}