版博士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.

преди 1 година
12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.fromTheseK = void 0;
  4. /**
  5. * The `FromThese` type class represents those data types which support errors and warnings.
  6. *
  7. * @since 2.11.0
  8. */
  9. var function_1 = require("./function");
  10. function fromTheseK(F) {
  11. return function (f) { return (0, function_1.flow)(f, F.fromThese); };
  12. }
  13. exports.fromTheseK = fromTheseK;