This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

15
node_modules/@angular/cdk/fesm2022/data-source.mjs generated vendored Executable file
View File

@@ -0,0 +1,15 @@
import { ConnectableObservable } from 'rxjs';
class DataSource {
}
/** Checks whether an object is a data source. */
function isDataSource(value) {
// Check if the value is a DataSource by observing if it has a connect function. Cannot
// be checked as an `instanceof DataSource` since people could create their own sources
// that match the interface, but don't extend DataSource. We also can't use `isObservable`
// here, because of some internal apps.
return value && typeof value.connect === 'function' && !(value instanceof ConnectableObservable);
}
export { DataSource, isDataSource };
//# sourceMappingURL=data-source.mjs.map