版博士V2.0程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

14 řádky
401 B

  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;