版博士V2.0程序
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.

FromThese.js 248 B

123456789
  1. /**
  2. * The `FromThese` type class represents those data types which support errors and warnings.
  3. *
  4. * @since 2.11.0
  5. */
  6. import { flow } from './function';
  7. export function fromTheseK(F) {
  8. return function (f) { return flow(f, F.fromThese); };
  9. }