diff --git a/404.html b/404.html index 447c5907..00375f22 100644 --- a/404.html +++ b/404.html @@ -12,7 +12,7 @@ - + diff --git a/assets/js/9ff03b8f.19e53878.js b/assets/js/9ff03b8f.2f05b883.js similarity index 97% rename from assets/js/9ff03b8f.19e53878.js rename to assets/js/9ff03b8f.2f05b883.js index ede925db..5434fc28 100644 --- a/assets/js/9ff03b8f.19e53878.js +++ b/assets/js/9ff03b8f.2f05b883.js @@ -1 +1 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[8005],{9547:(e,t,n)=>{n.r(t),n.d(t,{assets:()=>o,contentTitle:()=>l,default:()=>f,frontMatter:()=>s,metadata:()=>i,toc:()=>c});var r=n(4848),a=n(8453);const s={id:"flat"},l=void 0,i={id:"flat",title:"flat",description:"flat() function",source:"@site/docs/flat.md",sourceDirName:".",slug:"/flat",permalink:"/docs/flat",draft:!1,unlisted:!1,tags:[],version:"current",frontMatter:{id:"flat"},sidebar:"api",previous:{title:"filter",permalink:"/docs/filter"},next:{title:"flatMap",permalink:"/docs/flatMap"}},o={},c=[{value:"flat() function",id:"flat-function",level:2},{value:"Example",id:"example",level:2}];function d(e){const t={a:"a",code:"code",h2:"h2",p:"p",pre:"pre",...(0,a.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(t.h2,{id:"flat-function",children:"flat() function"}),"\n",(0,r.jsxs)(t.p,{children:["Returns flattened Iterable/AsyncIterable. If first argument is number, more perform flatten ",(0,r.jsx)(t.code,{children:"flat(2, [[[1,2]]]) // [1,2]"})]}),"\n",(0,r.jsx)("b",{children:"Signature:"}),"\n",(0,r.jsx)(t.pre,{children:(0,r.jsx)(t.code,{className:"language-typescript",children:"declare function flat | AsyncIterable, B extends number = 1>(iterator: A, depth?: B): ReturnFlatType;\n"})}),"\n",(0,r.jsx)(t.h2,{id:"example",children:"Example"}),"\n",(0,r.jsx)(t.pre,{children:(0,r.jsx)(t.code,{className:"language-ts",children:"const iter = flat([1,[2,3],[[4,5]]]);\r\niter.next() // {done:false, value: 1}\r\niter.next() // {done:false, value: 2}\r\niter.next() // {done:false, value: 3}\r\niter.next() // {done:false, value: [4, 5]}\r\niter.next() // {done:true, value: undefined}\r\n\r\n// with pipe\r\npipe(\r\n [1,[2, 3],[[4, 5]]],\r\n flat,\r\n toArray,\r\n); // [1, 2, 3, [4, 5]]\r\n\r\nawait pipe(\r\n Promise.resolve([1,[2, 3],[[4, 5]]]),\r\n flat,\r\n toArray,\r\n); // [1, 2, 3, [4, 5]]\n"})}),"\n",(0,r.jsx)(t.p,{children:(0,r.jsx)(t.a,{href:"https://codesandbox.io/s/fxts-flat-6t2in",children:"Try It"})}),"\n",(0,r.jsxs)(t.p,{children:["see ",(0,r.jsx)(t.a,{href:"https://fxts.dev/docs/pipe",children:"pipe"}),", ",(0,r.jsx)(t.a,{href:"https://fxts.dev/docs/toAsync",children:"toAsync"}),", ",(0,r.jsx)(t.a,{href:"https://fxts.dev/docs/toArray",children:"toArray"})]})]})}function f(e={}){const{wrapper:t}={...(0,a.R)(),...e.components};return t?(0,r.jsx)(t,{...e,children:(0,r.jsx)(d,{...e})}):d(e)}},8453:(e,t,n)=>{n.d(t,{R:()=>l,x:()=>i});var r=n(6540);const a={},s=r.createContext(a);function l(e){const t=r.useContext(s);return r.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function i(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(a):e.components||a:l(e.components),r.createElement(s.Provider,{value:t},e.children)}}}]); \ No newline at end of file +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[8005],{9547:(e,t,n)=>{n.r(t),n.d(t,{assets:()=>o,contentTitle:()=>l,default:()=>f,frontMatter:()=>s,metadata:()=>i,toc:()=>c});var r=n(4848),a=n(8453);const s={id:"flat"},l=void 0,i={id:"flat",title:"flat",description:"flat() function",source:"@site/docs/flat.md",sourceDirName:".",slug:"/flat",permalink:"/docs/flat",draft:!1,unlisted:!1,tags:[],version:"current",frontMatter:{id:"flat"},sidebar:"api",previous:{title:"filter",permalink:"/docs/filter"},next:{title:"flatMap",permalink:"/docs/flatMap"}},o={},c=[{value:"flat() function",id:"flat-function",level:2},{value:"Example",id:"example",level:2}];function d(e){const t={a:"a",code:"code",h2:"h2",p:"p",pre:"pre",...(0,a.R)(),...e.components};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(t.h2,{id:"flat-function",children:"flat() function"}),"\n",(0,r.jsxs)(t.p,{children:["Returns flattened Iterable/AsyncIterable. If first argument is number, more perform flatten ",(0,r.jsx)(t.code,{children:"flat([[[1,2]]], 2) // [1,2]"})]}),"\n",(0,r.jsx)("b",{children:"Signature:"}),"\n",(0,r.jsx)(t.pre,{children:(0,r.jsx)(t.code,{className:"language-typescript",children:"declare function flat | AsyncIterable, B extends number = 1>(iterator: A, depth?: B): ReturnFlatType;\n"})}),"\n",(0,r.jsx)(t.h2,{id:"example",children:"Example"}),"\n",(0,r.jsx)(t.pre,{children:(0,r.jsx)(t.code,{className:"language-ts",children:"const iter = flat([1,[2,3],[[4,5]]]);\r\niter.next() // {done:false, value: 1}\r\niter.next() // {done:false, value: 2}\r\niter.next() // {done:false, value: 3}\r\niter.next() // {done:false, value: [4, 5]}\r\niter.next() // {done:true, value: undefined}\r\n\r\n// with pipe\r\npipe(\r\n [1,[2, 3],[[4, 5]]],\r\n flat,\r\n toArray,\r\n); // [1, 2, 3, [4, 5]]\r\n\r\nawait pipe(\r\n Promise.resolve([1,[2, 3],[[4, 5]]]),\r\n flat,\r\n toArray,\r\n); // [1, 2, 3, [4, 5]]\n"})}),"\n",(0,r.jsx)(t.p,{children:(0,r.jsx)(t.a,{href:"https://codesandbox.io/s/fxts-flat-6t2in",children:"Try It"})}),"\n",(0,r.jsxs)(t.p,{children:["see ",(0,r.jsx)(t.a,{href:"https://fxts.dev/docs/pipe",children:"pipe"}),", ",(0,r.jsx)(t.a,{href:"https://fxts.dev/docs/toAsync",children:"toAsync"}),", ",(0,r.jsx)(t.a,{href:"https://fxts.dev/docs/toArray",children:"toArray"})]})]})}function f(e={}){const{wrapper:t}={...(0,a.R)(),...e.components};return t?(0,r.jsx)(t,{...e,children:(0,r.jsx)(d,{...e})}):d(e)}},8453:(e,t,n)=>{n.d(t,{R:()=>l,x:()=>i});var r=n(6540);const a={},s=r.createContext(a);function l(e){const t=r.useContext(s);return r.useMemo((function(){return"function"==typeof e?e(t):{...t,...e}}),[t,e])}function i(e){let t;return t=e.disableParentContext?"function"==typeof e.components?e.components(a):e.components||a:l(e.components),r.createElement(s.Provider,{value:t},e.children)}}}]); \ No newline at end of file diff --git a/assets/js/runtime~main.966c30b3.js b/assets/js/runtime~main.bbaea2e9.js similarity index 99% rename from assets/js/runtime~main.966c30b3.js rename to assets/js/runtime~main.bbaea2e9.js index e8405a5a..966e7b8f 100644 --- a/assets/js/runtime~main.966c30b3.js +++ b/assets/js/runtime~main.bbaea2e9.js @@ -1 +1 @@ -(()=>{"use strict";var e,a,f,d,c,b={},t={};function r(e){var a=t[e];if(void 0!==a)return a.exports;var f=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(f.exports,f,f.exports,r),f.loaded=!0,f.exports}r.m=b,r.c=t,e=[],r.O=(a,f,d,c)=>{if(!f){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](f[o])))?f.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[f,d,c]},r.n=e=>{var a=e&&e.__esModule?()=>e.default:()=>e;return r.d(a,{a:a}),a},f=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,d){if(1&d&&(e=this(e)),8&d)return e;if("object"==typeof e&&e){if(4&d&&e.__esModule)return e;if(16&d&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};a=a||[null,f({}),f([]),f(f)];for(var t=2&d&&e;"object"==typeof t&&!~a.indexOf(t);t=f(t))Object.getOwnPropertyNames(t).forEach((a=>b[a]=()=>e[a]));return b.default=()=>e,r.d(c,b),c},r.d=(e,a)=>{for(var f in a)r.o(a,f)&&!r.o(e,f)&&Object.defineProperty(e,f,{enumerable:!0,get:a[f]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((a,f)=>(r.f[f](e,a),a)),[])),r.u=e=>"assets/js/"+({76:"16e8e4ea",108:"0058a559",129:"f56215be",192:"d4621bd6",232:"a792ae6b",289:"1afe06e6",421:"3e2cea56",427:"41427dbd",573:"964876d0",644:"a13c8d3b",712:"eba555e9",925:"02ee0895",1028:"734f2e17",1068:"cd579993",1331:"d02cd5ce",1461:"608d5641",1554:"6612d0dd",1682:"cfe017da",1795:"1d08bea3",1828:"49e64ab8",2109:"cdfe3287",2123:"d4522a55",2138:"1a4e3797",2244:"b82dbf03",2257:"47d70d6d",2287:"210bf649",2353:"6ffcc0ea",2392:"158706f2",2626:"c2f8a836",2634:"c4f5d8e4",2748:"4e04d338",2828:"965109f3",2853:"4f64f2cc",3073:"e394e23a",3091:"bae179e2",3205:"a00302a7",3246:"69adfb8e",3289:"db45fef8",3464:"4e369fd0",3601:"50af6950",3683:"39eb40a6",3708:"969cdbf6",3724:"e240fc47",3816:"49086167",3973:"a3072847",4048:"86f5e2e4",4163:"9a026d11",4225:"5c36e323",4361:"a43d1a0b",4468:"c35f9c57",4541:"06388b3b",4630:"690cbe68",4642:"68451bba",4834:"248f8a93",4873:"a0f9174f",4940:"fc04fdc5",4993:"51b3d719",5042:"41bcc097",5085:"a444bd10",5090:"04d88e6b",5211:"1211b948",5231:"cdf7d60f",5327:"c6a029fa",5562:"df6c63a4",5610:"975fef74",5742:"c377a04b",5750:"120a4791",5921:"45b965f9",6087:"47a5dbed",6156:"16369154",6170:"a7a0251b",6244:"c1b47848",6254:"b45b40f8",6270:"ec6f8993",6297:"902de5c0",6407:"17853b1a",6451:"8cc724d7",6723:"e7c93931",6752:"ac6e9832",6758:"9c758254",7098:"a7bd4aaa",7195:"bfd2bef3",7212:"92858fbc",7214:"e495ac88",7291:"47330074",7615:"d2672ed8",7622:"fc648345",7635:"a19ef396",7690:"658db2fd",7723:"4eabdd00",7778:"81602ec0",7817:"d7cff035",7822:"47332327",7902:"19a99a72",7904:"88f603ff",7924:"d589d3a7",7959:"428581d6",8005:"9ff03b8f",8008:"60bd5769",8133:"ad6a40b0",8244:"df8ead47",8285:"7037e66f",8350:"b8471ed6",8401:"17896441",8500:"d8e1327c",8581:"935f2afb",8594:"e1a677fb",8609:"88a06dd7",8647:"d63e7be9",8712:"31ccc530",8756:"7432206e",8935:"81f1b453",9030:"92a861f2",9048:"a94703ab",9071:"d6512fd8",9103:"c74ee130",9297:"3386ce0f",9446:"264024be",9548:"8f4062da",9589:"72bb5253",9647:"5e95c892",9664:"382622a1",9667:"423df7e1",9744:"826618bd",9786:"0762c7f6",9806:"2860049b",9869:"b3f87c10"}[e]||e)+"."+{76:"3541bc5f",108:"5addc267",129:"9a62399a",192:"179e3988",232:"67e4f970",289:"1bb211d7",416:"36a683d5",421:"337d1748",427:"4d1069dc",573:"ed80321a",644:"837efaad",712:"44f43222",925:"fa6bd938",1028:"d11adcb0",1068:"e8b228c3",1331:"48f8371e",1461:"e243217f",1554:"a731cc1c",1682:"7b05f06c",1795:"050f02ca",1828:"dc8a29af",2109:"f9faad78",2123:"81a34697",2138:"e464e946",2237:"828f95f0",2244:"d8694c10",2257:"c41212f1",2287:"2d11665b",2353:"0642ef39",2392:"1bc950e1",2626:"d4c709e1",2634:"37a26a9a",2748:"6d9bb731",2828:"96026f61",2853:"bf2c38e2",3073:"8b7d49eb",3091:"c80359c8",3205:"136560e1",3246:"502258d0",3289:"105d8780",3464:"8efc45e7",3601:"e728c1da",3683:"02e93613",3708:"62d84f87",3724:"e06f3cff",3816:"e519f7da",3973:"82b427c1",4048:"5e205259",4163:"77235ba5",4225:"ba347f62",4361:"57f55437",4468:"e84cfe6d",4541:"75efeec7",4630:"8eb687d0",4642:"1f363e12",4696:"43aa3ccb",4834:"4588a0cc",4873:"1ddec857",4940:"805ad509",4993:"f53d478d",5042:"edf21fb0",5085:"7a41a0a9",5090:"8c612788",5211:"e03c30cd",5231:"3a645df8",5327:"398cb270",5562:"d5d5445c",5610:"c828b921",5742:"36b2287c",5750:"7e0ed2a4",5921:"33c9bf3e",6087:"fc2aafdc",6156:"efede7a5",6170:"850517dc",6244:"d024e865",6254:"0c0e5676",6270:"967974c3",6297:"84c3eafd",6407:"d1bacbb7",6451:"ad1fa60f",6723:"45806d3a",6752:"e922afae",6758:"55c66adf",7098:"dc097708",7195:"6ea197b4",7212:"f3fdcfe7",7214:"241fdfdd",7291:"fa37dda2",7615:"0510c444",7622:"3c39e1be",7635:"2c18c938",7690:"271c4535",7723:"b45a4dda",7778:"f7117244",7817:"e414f881",7822:"a114955d",7902:"2551b7ea",7904:"9b93ad80",7924:"0c4d5e69",7959:"d1692b91",8005:"19e53878",8008:"b1c59015",8133:"fd28c1c6",8244:"d9a4cf08",8285:"88b66a0d",8350:"9ea0ab36",8401:"7ed15aa0",8500:"210a6b71",8581:"ad07f17c",8594:"fa2f20f3",8609:"cb752d50",8647:"daf88723",8712:"273a3c3f",8756:"45fdedd1",8913:"83bce4ad",8935:"9808f77a",9030:"a5ea8774",9048:"cef9f040",9071:"a252669f",9103:"ef4c778b",9297:"48f8e249",9446:"5b62c829",9462:"3ff722d9",9548:"ac9be399",9589:"1df85cb3",9647:"c7e58006",9664:"e928d1d2",9667:"e0d3cf81",9744:"007549ad",9786:"e66e4904",9806:"ad41c2d2",9869:"ad1f91e9"}[e]+".js",r.miniCssF=e=>{},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,a)=>Object.prototype.hasOwnProperty.call(e,a),d={},c="website:",r.l=(e,a,f,b)=>{if(d[e])d[e].push(a);else{var t,o;if(void 0!==f)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(s);var c=d[e];if(delete d[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(f))),a)return a(f)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/",r.gca=function(e){return e={16369154:"6156",17896441:"8401",47330074:"7291",47332327:"7822",49086167:"3816","16e8e4ea":"76","0058a559":"108",f56215be:"129",d4621bd6:"192",a792ae6b:"232","1afe06e6":"289","3e2cea56":"421","41427dbd":"427","964876d0":"573",a13c8d3b:"644",eba555e9:"712","02ee0895":"925","734f2e17":"1028",cd579993:"1068",d02cd5ce:"1331","608d5641":"1461","6612d0dd":"1554",cfe017da:"1682","1d08bea3":"1795","49e64ab8":"1828",cdfe3287:"2109",d4522a55:"2123","1a4e3797":"2138",b82dbf03:"2244","47d70d6d":"2257","210bf649":"2287","6ffcc0ea":"2353","158706f2":"2392",c2f8a836:"2626",c4f5d8e4:"2634","4e04d338":"2748","965109f3":"2828","4f64f2cc":"2853",e394e23a:"3073",bae179e2:"3091",a00302a7:"3205","69adfb8e":"3246",db45fef8:"3289","4e369fd0":"3464","50af6950":"3601","39eb40a6":"3683","969cdbf6":"3708",e240fc47:"3724",a3072847:"3973","86f5e2e4":"4048","9a026d11":"4163","5c36e323":"4225",a43d1a0b:"4361",c35f9c57:"4468","06388b3b":"4541","690cbe68":"4630","68451bba":"4642","248f8a93":"4834",a0f9174f:"4873",fc04fdc5:"4940","51b3d719":"4993","41bcc097":"5042",a444bd10:"5085","04d88e6b":"5090","1211b948":"5211",cdf7d60f:"5231",c6a029fa:"5327",df6c63a4:"5562","975fef74":"5610",c377a04b:"5742","120a4791":"5750","45b965f9":"5921","47a5dbed":"6087",a7a0251b:"6170",c1b47848:"6244",b45b40f8:"6254",ec6f8993:"6270","902de5c0":"6297","17853b1a":"6407","8cc724d7":"6451",e7c93931:"6723",ac6e9832:"6752","9c758254":"6758",a7bd4aaa:"7098",bfd2bef3:"7195","92858fbc":"7212",e495ac88:"7214",d2672ed8:"7615",fc648345:"7622",a19ef396:"7635","658db2fd":"7690","4eabdd00":"7723","81602ec0":"7778",d7cff035:"7817","19a99a72":"7902","88f603ff":"7904",d589d3a7:"7924","428581d6":"7959","9ff03b8f":"8005","60bd5769":"8008",ad6a40b0:"8133",df8ead47:"8244","7037e66f":"8285",b8471ed6:"8350",d8e1327c:"8500","935f2afb":"8581",e1a677fb:"8594","88a06dd7":"8609",d63e7be9:"8647","31ccc530":"8712","7432206e":"8756","81f1b453":"8935","92a861f2":"9030",a94703ab:"9048",d6512fd8:"9071",c74ee130:"9103","3386ce0f":"9297","264024be":"9446","8f4062da":"9548","72bb5253":"9589","5e95c892":"9647","382622a1":"9664","423df7e1":"9667","826618bd":"9744","0762c7f6":"9786","2860049b":"9806",b3f87c10:"9869"}[e]||e,r.p+r.u(e)},(()=>{var e={5354:0,1869:0};r.f.j=(a,f)=>{var d=r.o(e,a)?e[a]:void 0;if(0!==d)if(d)f.push(d[2]);else if(/^(1869|5354)$/.test(a))e[a]=0;else{var c=new Promise(((f,c)=>d=e[a]=[f,c]));f.push(d[2]=c);var b=r.p+r.u(a),t=new Error;r.l(b,(f=>{if(r.o(e,a)&&(0!==(d=e[a])&&(e[a]=void 0),d)){var c=f&&("load"===f.type?"missing":f.type),b=f&&f.target&&f.target.src;t.message="Loading chunk "+a+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,d[1](t)}}),"chunk-"+a,a)}},r.O.j=a=>0===e[a];var a=(a,f)=>{var d,c,b=f[0],t=f[1],o=f[2],n=0;if(b.some((a=>0!==e[a]))){for(d in t)r.o(t,d)&&(r.m[d]=t[d]);if(o)var i=o(r)}for(a&&a(f);n{"use strict";var e,a,f,d,c,b={},t={};function r(e){var a=t[e];if(void 0!==a)return a.exports;var f=t[e]={id:e,loaded:!1,exports:{}};return b[e].call(f.exports,f,f.exports,r),f.loaded=!0,f.exports}r.m=b,r.c=t,e=[],r.O=(a,f,d,c)=>{if(!f){var b=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](f[o])))?f.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[f,d,c]},r.n=e=>{var a=e&&e.__esModule?()=>e.default:()=>e;return r.d(a,{a:a}),a},f=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,d){if(1&d&&(e=this(e)),8&d)return e;if("object"==typeof e&&e){if(4&d&&e.__esModule)return e;if(16&d&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var b={};a=a||[null,f({}),f([]),f(f)];for(var t=2&d&&e;"object"==typeof t&&!~a.indexOf(t);t=f(t))Object.getOwnPropertyNames(t).forEach((a=>b[a]=()=>e[a]));return b.default=()=>e,r.d(c,b),c},r.d=(e,a)=>{for(var f in a)r.o(a,f)&&!r.o(e,f)&&Object.defineProperty(e,f,{enumerable:!0,get:a[f]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((a,f)=>(r.f[f](e,a),a)),[])),r.u=e=>"assets/js/"+({76:"16e8e4ea",108:"0058a559",129:"f56215be",192:"d4621bd6",232:"a792ae6b",289:"1afe06e6",421:"3e2cea56",427:"41427dbd",573:"964876d0",644:"a13c8d3b",712:"eba555e9",925:"02ee0895",1028:"734f2e17",1068:"cd579993",1331:"d02cd5ce",1461:"608d5641",1554:"6612d0dd",1682:"cfe017da",1795:"1d08bea3",1828:"49e64ab8",2109:"cdfe3287",2123:"d4522a55",2138:"1a4e3797",2244:"b82dbf03",2257:"47d70d6d",2287:"210bf649",2353:"6ffcc0ea",2392:"158706f2",2626:"c2f8a836",2634:"c4f5d8e4",2748:"4e04d338",2828:"965109f3",2853:"4f64f2cc",3073:"e394e23a",3091:"bae179e2",3205:"a00302a7",3246:"69adfb8e",3289:"db45fef8",3464:"4e369fd0",3601:"50af6950",3683:"39eb40a6",3708:"969cdbf6",3724:"e240fc47",3816:"49086167",3973:"a3072847",4048:"86f5e2e4",4163:"9a026d11",4225:"5c36e323",4361:"a43d1a0b",4468:"c35f9c57",4541:"06388b3b",4630:"690cbe68",4642:"68451bba",4834:"248f8a93",4873:"a0f9174f",4940:"fc04fdc5",4993:"51b3d719",5042:"41bcc097",5085:"a444bd10",5090:"04d88e6b",5211:"1211b948",5231:"cdf7d60f",5327:"c6a029fa",5562:"df6c63a4",5610:"975fef74",5742:"c377a04b",5750:"120a4791",5921:"45b965f9",6087:"47a5dbed",6156:"16369154",6170:"a7a0251b",6244:"c1b47848",6254:"b45b40f8",6270:"ec6f8993",6297:"902de5c0",6407:"17853b1a",6451:"8cc724d7",6723:"e7c93931",6752:"ac6e9832",6758:"9c758254",7098:"a7bd4aaa",7195:"bfd2bef3",7212:"92858fbc",7214:"e495ac88",7291:"47330074",7615:"d2672ed8",7622:"fc648345",7635:"a19ef396",7690:"658db2fd",7723:"4eabdd00",7778:"81602ec0",7817:"d7cff035",7822:"47332327",7902:"19a99a72",7904:"88f603ff",7924:"d589d3a7",7959:"428581d6",8005:"9ff03b8f",8008:"60bd5769",8133:"ad6a40b0",8244:"df8ead47",8285:"7037e66f",8350:"b8471ed6",8401:"17896441",8500:"d8e1327c",8581:"935f2afb",8594:"e1a677fb",8609:"88a06dd7",8647:"d63e7be9",8712:"31ccc530",8756:"7432206e",8935:"81f1b453",9030:"92a861f2",9048:"a94703ab",9071:"d6512fd8",9103:"c74ee130",9297:"3386ce0f",9446:"264024be",9548:"8f4062da",9589:"72bb5253",9647:"5e95c892",9664:"382622a1",9667:"423df7e1",9744:"826618bd",9786:"0762c7f6",9806:"2860049b",9869:"b3f87c10"}[e]||e)+"."+{76:"3541bc5f",108:"5addc267",129:"9a62399a",192:"179e3988",232:"67e4f970",289:"1bb211d7",416:"36a683d5",421:"337d1748",427:"4d1069dc",573:"ed80321a",644:"837efaad",712:"44f43222",925:"fa6bd938",1028:"d11adcb0",1068:"e8b228c3",1331:"48f8371e",1461:"e243217f",1554:"a731cc1c",1682:"7b05f06c",1795:"050f02ca",1828:"dc8a29af",2109:"f9faad78",2123:"81a34697",2138:"e464e946",2237:"828f95f0",2244:"d8694c10",2257:"c41212f1",2287:"2d11665b",2353:"0642ef39",2392:"1bc950e1",2626:"d4c709e1",2634:"37a26a9a",2748:"6d9bb731",2828:"96026f61",2853:"bf2c38e2",3073:"8b7d49eb",3091:"c80359c8",3205:"136560e1",3246:"502258d0",3289:"105d8780",3464:"8efc45e7",3601:"e728c1da",3683:"02e93613",3708:"62d84f87",3724:"e06f3cff",3816:"e519f7da",3973:"82b427c1",4048:"5e205259",4163:"77235ba5",4225:"ba347f62",4361:"57f55437",4468:"e84cfe6d",4541:"75efeec7",4630:"8eb687d0",4642:"1f363e12",4696:"43aa3ccb",4834:"4588a0cc",4873:"1ddec857",4940:"805ad509",4993:"f53d478d",5042:"edf21fb0",5085:"7a41a0a9",5090:"8c612788",5211:"e03c30cd",5231:"3a645df8",5327:"398cb270",5562:"d5d5445c",5610:"c828b921",5742:"36b2287c",5750:"7e0ed2a4",5921:"33c9bf3e",6087:"fc2aafdc",6156:"efede7a5",6170:"850517dc",6244:"d024e865",6254:"0c0e5676",6270:"967974c3",6297:"84c3eafd",6407:"d1bacbb7",6451:"ad1fa60f",6723:"45806d3a",6752:"e922afae",6758:"55c66adf",7098:"dc097708",7195:"6ea197b4",7212:"f3fdcfe7",7214:"241fdfdd",7291:"fa37dda2",7615:"0510c444",7622:"3c39e1be",7635:"2c18c938",7690:"271c4535",7723:"b45a4dda",7778:"f7117244",7817:"e414f881",7822:"a114955d",7902:"2551b7ea",7904:"9b93ad80",7924:"0c4d5e69",7959:"d1692b91",8005:"2f05b883",8008:"b1c59015",8133:"fd28c1c6",8244:"d9a4cf08",8285:"88b66a0d",8350:"9ea0ab36",8401:"7ed15aa0",8500:"210a6b71",8581:"ad07f17c",8594:"fa2f20f3",8609:"cb752d50",8647:"daf88723",8712:"273a3c3f",8756:"45fdedd1",8913:"83bce4ad",8935:"9808f77a",9030:"a5ea8774",9048:"cef9f040",9071:"a252669f",9103:"ef4c778b",9297:"48f8e249",9446:"5b62c829",9462:"3ff722d9",9548:"ac9be399",9589:"1df85cb3",9647:"c7e58006",9664:"e928d1d2",9667:"e0d3cf81",9744:"007549ad",9786:"e66e4904",9806:"ad41c2d2",9869:"ad1f91e9"}[e]+".js",r.miniCssF=e=>{},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,a)=>Object.prototype.hasOwnProperty.call(e,a),d={},c="website:",r.l=(e,a,f,b)=>{if(d[e])d[e].push(a);else{var t,o;if(void 0!==f)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(s);var c=d[e];if(delete d[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(f))),a)return a(f)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/",r.gca=function(e){return e={16369154:"6156",17896441:"8401",47330074:"7291",47332327:"7822",49086167:"3816","16e8e4ea":"76","0058a559":"108",f56215be:"129",d4621bd6:"192",a792ae6b:"232","1afe06e6":"289","3e2cea56":"421","41427dbd":"427","964876d0":"573",a13c8d3b:"644",eba555e9:"712","02ee0895":"925","734f2e17":"1028",cd579993:"1068",d02cd5ce:"1331","608d5641":"1461","6612d0dd":"1554",cfe017da:"1682","1d08bea3":"1795","49e64ab8":"1828",cdfe3287:"2109",d4522a55:"2123","1a4e3797":"2138",b82dbf03:"2244","47d70d6d":"2257","210bf649":"2287","6ffcc0ea":"2353","158706f2":"2392",c2f8a836:"2626",c4f5d8e4:"2634","4e04d338":"2748","965109f3":"2828","4f64f2cc":"2853",e394e23a:"3073",bae179e2:"3091",a00302a7:"3205","69adfb8e":"3246",db45fef8:"3289","4e369fd0":"3464","50af6950":"3601","39eb40a6":"3683","969cdbf6":"3708",e240fc47:"3724",a3072847:"3973","86f5e2e4":"4048","9a026d11":"4163","5c36e323":"4225",a43d1a0b:"4361",c35f9c57:"4468","06388b3b":"4541","690cbe68":"4630","68451bba":"4642","248f8a93":"4834",a0f9174f:"4873",fc04fdc5:"4940","51b3d719":"4993","41bcc097":"5042",a444bd10:"5085","04d88e6b":"5090","1211b948":"5211",cdf7d60f:"5231",c6a029fa:"5327",df6c63a4:"5562","975fef74":"5610",c377a04b:"5742","120a4791":"5750","45b965f9":"5921","47a5dbed":"6087",a7a0251b:"6170",c1b47848:"6244",b45b40f8:"6254",ec6f8993:"6270","902de5c0":"6297","17853b1a":"6407","8cc724d7":"6451",e7c93931:"6723",ac6e9832:"6752","9c758254":"6758",a7bd4aaa:"7098",bfd2bef3:"7195","92858fbc":"7212",e495ac88:"7214",d2672ed8:"7615",fc648345:"7622",a19ef396:"7635","658db2fd":"7690","4eabdd00":"7723","81602ec0":"7778",d7cff035:"7817","19a99a72":"7902","88f603ff":"7904",d589d3a7:"7924","428581d6":"7959","9ff03b8f":"8005","60bd5769":"8008",ad6a40b0:"8133",df8ead47:"8244","7037e66f":"8285",b8471ed6:"8350",d8e1327c:"8500","935f2afb":"8581",e1a677fb:"8594","88a06dd7":"8609",d63e7be9:"8647","31ccc530":"8712","7432206e":"8756","81f1b453":"8935","92a861f2":"9030",a94703ab:"9048",d6512fd8:"9071",c74ee130:"9103","3386ce0f":"9297","264024be":"9446","8f4062da":"9548","72bb5253":"9589","5e95c892":"9647","382622a1":"9664","423df7e1":"9667","826618bd":"9744","0762c7f6":"9786","2860049b":"9806",b3f87c10:"9869"}[e]||e,r.p+r.u(e)},(()=>{var e={5354:0,1869:0};r.f.j=(a,f)=>{var d=r.o(e,a)?e[a]:void 0;if(0!==d)if(d)f.push(d[2]);else if(/^(1869|5354)$/.test(a))e[a]=0;else{var c=new Promise(((f,c)=>d=e[a]=[f,c]));f.push(d[2]=c);var b=r.p+r.u(a),t=new Error;r.l(b,(f=>{if(r.o(e,a)&&(0!==(d=e[a])&&(e[a]=void 0),d)){var c=f&&("load"===f.type?"missing":f.type),b=f&&f.target&&f.target.src;t.message="Loading chunk "+a+" failed.\n("+c+": "+b+")",t.name="ChunkLoadError",t.type=c,t.request=b,d[1](t)}}),"chunk-"+a,a)}},r.O.j=a=>0===e[a];var a=(a,f)=>{var d,c,b=f[0],t=f[1],o=f[2],n=0;if(b.some((a=>0!==e[a]))){for(d in t)r.o(t,d)&&(r.m[d]=t[d]);if(o)var i=o(r)}for(a&&a(f);n
Skip to main content

flat

flat() function

-

Returns flattened Iterable/AsyncIterable. If first argument is number, more perform flatten flat(2, [[[1,2]]]) // [1,2]

+

Returns flattened Iterable/AsyncIterable. If first argument is number, more perform flatten flat([[[1,2]]], 2) // [1,2]

Signature:
declare function flat<A extends Iterable<unknown> | AsyncIterable<unknown>, B extends number = 1>(iterator: A, depth?: B): ReturnFlatType<A, B>;

Example

diff --git a/docs/flatMap/index.html b/docs/flatMap/index.html index 9909e24c..6e7de299 100644 --- a/docs/flatMap/index.html +++ b/docs/flatMap/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/fromEntries/index.html b/docs/fromEntries/index.html index 9dfab517..b3cb3e69 100644 --- a/docs/fromEntries/index.html +++ b/docs/fromEntries/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/function-composition/index.html b/docs/function-composition/index.html index 27b4e60a..f107f935 100644 --- a/docs/function-composition/index.html +++ b/docs/function-composition/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/fx/index.html b/docs/fx/index.html index fcf6e58b..9f3bb1e1 100644 --- a/docs/fx/index.html +++ b/docs/fx/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/getting-started/index.html b/docs/getting-started/index.html index 4ea6eaab..fb9455fc 100644 --- a/docs/getting-started/index.html +++ b/docs/getting-started/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/groupBy/index.html b/docs/groupBy/index.html index 185f3efa..55b390ca 100644 --- a/docs/groupBy/index.html +++ b/docs/groupBy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/gt/index.html b/docs/gt/index.html index 9f0f51a3..a8a733e2 100644 --- a/docs/gt/index.html +++ b/docs/gt/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/gte/index.html b/docs/gte/index.html index b4255e75..a911235d 100644 --- a/docs/gte/index.html +++ b/docs/gte/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/handle-concurrency/index.html b/docs/handle-concurrency/index.html index 4925ec33..9d92622c 100644 --- a/docs/handle-concurrency/index.html +++ b/docs/handle-concurrency/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/head/index.html b/docs/head/index.html index 9d8eb6f2..a2674526 100644 --- a/docs/head/index.html +++ b/docs/head/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/how-to-debug/index.html b/docs/how-to-debug/index.html index 2d88380a..2a60e159 100644 --- a/docs/how-to-debug/index.html +++ b/docs/how-to-debug/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/identity/index.html b/docs/identity/index.html index 37371453..7987f38b 100644 --- a/docs/identity/index.html +++ b/docs/identity/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/includes/index.html b/docs/includes/index.html index af63b0e6..9a7877b4 100644 --- a/docs/includes/index.html +++ b/docs/includes/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/index.html b/docs/index.html index 8b61a40c..4b2de5cb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/indexBy/index.html b/docs/indexBy/index.html index e2c2dc69..5078147e 100644 --- a/docs/indexBy/index.html +++ b/docs/indexBy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/intersection/index.html b/docs/intersection/index.html index a5a5e513..5c5529f1 100644 --- a/docs/intersection/index.html +++ b/docs/intersection/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/intersectionBy/index.html b/docs/intersectionBy/index.html index b2086b87..6e972ec4 100644 --- a/docs/intersectionBy/index.html +++ b/docs/intersectionBy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isArray/index.html b/docs/isArray/index.html index 44691bbe..7501e941 100644 --- a/docs/isArray/index.html +++ b/docs/isArray/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isBoolean/index.html b/docs/isBoolean/index.html index 914a4ef9..a4f29bea 100644 --- a/docs/isBoolean/index.html +++ b/docs/isBoolean/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isEmpty/index.html b/docs/isEmpty/index.html index d94226b3..028615be 100644 --- a/docs/isEmpty/index.html +++ b/docs/isEmpty/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isNil/index.html b/docs/isNil/index.html index ff3e382d..66fb424b 100644 --- a/docs/isNil/index.html +++ b/docs/isNil/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isNull/index.html b/docs/isNull/index.html index 554ed44b..01166cb5 100644 --- a/docs/isNull/index.html +++ b/docs/isNull/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isNumber/index.html b/docs/isNumber/index.html index 2b3b314d..d8fa2a61 100644 --- a/docs/isNumber/index.html +++ b/docs/isNumber/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isObject/index.html b/docs/isObject/index.html index ffd9ebbd..5c571445 100644 --- a/docs/isObject/index.html +++ b/docs/isObject/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isString/index.html b/docs/isString/index.html index e2061add..fecfda6b 100644 --- a/docs/isString/index.html +++ b/docs/isString/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/isUndefined/index.html b/docs/isUndefined/index.html index 23acd570..202e7848 100644 --- a/docs/isUndefined/index.html +++ b/docs/isUndefined/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/join/index.html b/docs/join/index.html index 2df58ffe..97898e14 100644 --- a/docs/join/index.html +++ b/docs/join/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/juxt/index.html b/docs/juxt/index.html index 3dab306c..d7def497 100644 --- a/docs/juxt/index.html +++ b/docs/juxt/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/keys/index.html b/docs/keys/index.html index bca6ed47..3a1bb9b5 100644 --- a/docs/keys/index.html +++ b/docs/keys/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/last/index.html b/docs/last/index.html index d7683318..7b9a1e36 100644 --- a/docs/last/index.html +++ b/docs/last/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/lazy-evaluation/index.html b/docs/lazy-evaluation/index.html index 7de7ca13..043ab855 100644 --- a/docs/lazy-evaluation/index.html +++ b/docs/lazy-evaluation/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/lt/index.html b/docs/lt/index.html index 10913159..b575bcdb 100644 --- a/docs/lt/index.html +++ b/docs/lt/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/lte/index.html b/docs/lte/index.html index 5b3a7bfd..19660787 100644 --- a/docs/lte/index.html +++ b/docs/lte/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/map/index.html b/docs/map/index.html index 34eaa5bc..eef07260 100644 --- a/docs/map/index.html +++ b/docs/map/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/max/index.html b/docs/max/index.html index 68eedff8..a312a23e 100644 --- a/docs/max/index.html +++ b/docs/max/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/memoize/index.html b/docs/memoize/index.html index e1b01d47..6ba6a999 100644 --- a/docs/memoize/index.html +++ b/docs/memoize/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/method-chaining/index.html b/docs/method-chaining/index.html index e1bf7ccd..cdcf1a06 100644 --- a/docs/method-chaining/index.html +++ b/docs/method-chaining/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/min/index.html b/docs/min/index.html index edd86fd0..e106fe53 100644 --- a/docs/min/index.html +++ b/docs/min/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/negate/index.html b/docs/negate/index.html index 6efc0429..eb435c20 100644 --- a/docs/negate/index.html +++ b/docs/negate/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/noop/index.html b/docs/noop/index.html index afda24ff..1b5fae2d 100644 --- a/docs/noop/index.html +++ b/docs/noop/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/not/index.html b/docs/not/index.html index e3a0a7d6..79421a9d 100644 --- a/docs/not/index.html +++ b/docs/not/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/nth/index.html b/docs/nth/index.html index a9274057..47da15dc 100644 --- a/docs/nth/index.html +++ b/docs/nth/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/omit/index.html b/docs/omit/index.html index c0bcffc3..3a9d9fb8 100644 --- a/docs/omit/index.html +++ b/docs/omit/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/omitBy/index.html b/docs/omitBy/index.html index d9d5607b..e1d327bc 100644 --- a/docs/omitBy/index.html +++ b/docs/omitBy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/partition/index.html b/docs/partition/index.html index 78806bdd..127b3d7c 100644 --- a/docs/partition/index.html +++ b/docs/partition/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/peek/index.html b/docs/peek/index.html index 79e066b2..487ffb95 100644 --- a/docs/peek/index.html +++ b/docs/peek/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/pick/index.html b/docs/pick/index.html index 94fce231..0567a7d7 100644 --- a/docs/pick/index.html +++ b/docs/pick/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/pickBy/index.html b/docs/pickBy/index.html index 56d90e6c..6c07d919 100644 --- a/docs/pickBy/index.html +++ b/docs/pickBy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/pipe/index.html b/docs/pipe/index.html index eeaf9ba9..c6dcb529 100644 --- a/docs/pipe/index.html +++ b/docs/pipe/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/pipeLazy/index.html b/docs/pipeLazy/index.html index 0076d31e..a9df2093 100644 --- a/docs/pipeLazy/index.html +++ b/docs/pipeLazy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/pluck/index.html b/docs/pluck/index.html index db51aee9..5ec8b737 100644 --- a/docs/pluck/index.html +++ b/docs/pluck/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/prepend/index.html b/docs/prepend/index.html index 57a97d53..7e701c63 100644 --- a/docs/prepend/index.html +++ b/docs/prepend/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/prop/index.html b/docs/prop/index.html index c859cb41..f5f8dad7 100644 --- a/docs/prop/index.html +++ b/docs/prop/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/props/index.html b/docs/props/index.html index 6c35b81c..d2c13e5b 100644 --- a/docs/props/index.html +++ b/docs/props/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/range/index.html b/docs/range/index.html index c8fee217..d5e44b1b 100644 --- a/docs/range/index.html +++ b/docs/range/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/reduce/index.html b/docs/reduce/index.html index 0ce89286..8684bd9f 100644 --- a/docs/reduce/index.html +++ b/docs/reduce/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/reduceLazy/index.html b/docs/reduceLazy/index.html index ec46a170..55a4236b 100644 --- a/docs/reduceLazy/index.html +++ b/docs/reduceLazy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/reject/index.html b/docs/reject/index.html index 6e809b7a..4342c787 100644 --- a/docs/reject/index.html +++ b/docs/reject/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/repeat/index.html b/docs/repeat/index.html index b11bb8c3..6c9ebc72 100644 --- a/docs/repeat/index.html +++ b/docs/repeat/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/reverse/index.html b/docs/reverse/index.html index b3a85084..7a3c2e78 100644 --- a/docs/reverse/index.html +++ b/docs/reverse/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/scan/index.html b/docs/scan/index.html index 01cd7642..6175101c 100644 --- a/docs/scan/index.html +++ b/docs/scan/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/size/index.html b/docs/size/index.html index 466a35b3..4f964f37 100644 --- a/docs/size/index.html +++ b/docs/size/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/slice/index.html b/docs/slice/index.html index 9fb5e7db..08b45300 100644 --- a/docs/slice/index.html +++ b/docs/slice/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/some/index.html b/docs/some/index.html index a3d71371..848fda25 100644 --- a/docs/some/index.html +++ b/docs/some/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/sort/index.html b/docs/sort/index.html index 3557350f..91e4c94f 100644 --- a/docs/sort/index.html +++ b/docs/sort/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/sortBy/index.html b/docs/sortBy/index.html index 81585fb7..dfbfa680 100644 --- a/docs/sortBy/index.html +++ b/docs/sortBy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/split/index.html b/docs/split/index.html index 637f495f..b298ba45 100644 --- a/docs/split/index.html +++ b/docs/split/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/sum/index.html b/docs/sum/index.html index 4a4a16ed..fb91c5a1 100644 --- a/docs/sum/index.html +++ b/docs/sum/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/take/index.html b/docs/take/index.html index e677dc33..9a290d57 100644 --- a/docs/take/index.html +++ b/docs/take/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/takeRight/index.html b/docs/takeRight/index.html index b8f849ca..3b9b7c79 100644 --- a/docs/takeRight/index.html +++ b/docs/takeRight/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/takeUntil/index.html b/docs/takeUntil/index.html index e4996534..a500894d 100644 --- a/docs/takeUntil/index.html +++ b/docs/takeUntil/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/takeWhile/index.html b/docs/takeWhile/index.html index 239bf98d..74db7334 100644 --- a/docs/takeWhile/index.html +++ b/docs/takeWhile/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/tap/index.html b/docs/tap/index.html index 5bf5e39b..097e2a37 100644 --- a/docs/tap/index.html +++ b/docs/tap/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/throwError/index.html b/docs/throwError/index.html index 5dded4f9..bb685b53 100644 --- a/docs/throwError/index.html +++ b/docs/throwError/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/throwIf/index.html b/docs/throwIf/index.html index 39ba9a90..75452da1 100644 --- a/docs/throwIf/index.html +++ b/docs/throwIf/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/to-async/index.html b/docs/to-async/index.html index a45a0f78..ef8442ce 100644 --- a/docs/to-async/index.html +++ b/docs/to-async/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/toArray/index.html b/docs/toArray/index.html index fcde3064..762ded52 100644 --- a/docs/toArray/index.html +++ b/docs/toArray/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/toAsync/index.html b/docs/toAsync/index.html index 3980c660..4a38c3cb 100644 --- a/docs/toAsync/index.html +++ b/docs/toAsync/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/unicodeToArray/index.html b/docs/unicodeToArray/index.html index 34904cc1..b8f9575f 100644 --- a/docs/unicodeToArray/index.html +++ b/docs/unicodeToArray/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/uniq/index.html b/docs/uniq/index.html index e4a63e2b..c25026e0 100644 --- a/docs/uniq/index.html +++ b/docs/uniq/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/uniqBy/index.html b/docs/uniqBy/index.html index 148fbd11..c04a67f9 100644 --- a/docs/uniqBy/index.html +++ b/docs/uniqBy/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/unless/index.html b/docs/unless/index.html index a612b8de..9fd8e7dd 100644 --- a/docs/unless/index.html +++ b/docs/unless/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/values/index.html b/docs/values/index.html index ffb41a71..e2b3b384 100644 --- a/docs/values/index.html +++ b/docs/values/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/zip/index.html b/docs/zip/index.html index 591b4e36..49de626c 100644 --- a/docs/zip/index.html +++ b/docs/zip/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/zipWith/index.html b/docs/zipWith/index.html index a5483051..5fca6717 100644 --- a/docs/zipWith/index.html +++ b/docs/zipWith/index.html @@ -12,7 +12,7 @@ - + diff --git a/docs/zipWithIndex/index.html b/docs/zipWithIndex/index.html index 35c85c0b..17075435 100644 --- a/docs/zipWithIndex/index.html +++ b/docs/zipWithIndex/index.html @@ -12,7 +12,7 @@ - + diff --git a/index.html b/index.html index 31487afb..3fad6d0b 100644 --- a/index.html +++ b/index.html @@ -12,7 +12,7 @@ - + diff --git a/search/index.html b/search/index.html index 402452f4..1bce3f98 100644 --- a/search/index.html +++ b/search/index.html @@ -12,7 +12,7 @@ - +