aboutsummaryrefslogtreecommitdiff
path: root/files/pl/orphaned
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-05-29 01:14:43 +0000
committerMDN <actions@users.noreply.github.com>2021-05-29 01:14:43 +0000
commitd94b4f47476bbc901753f68d6dfe317e1c5c732e (patch)
tree590036437f5c828d71f35d6880228be2b4361b50 /files/pl/orphaned
parent05a7219ba9605649cb6daa281e26209eaa73adf0 (diff)
downloadtranslated-content-d94b4f47476bbc901753f68d6dfe317e1c5c732e.tar.gz
translated-content-d94b4f47476bbc901753f68d6dfe317e1c5c732e.tar.bz2
translated-content-d94b4f47476bbc901753f68d6dfe317e1c5c732e.zip
[CRON] sync translated content
Diffstat (limited to 'files/pl/orphaned')
-rw-r--r--files/pl/orphaned/web/javascript/reference/operators/pipeline_operator/index.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/files/pl/orphaned/web/javascript/reference/operators/pipeline_operator/index.html b/files/pl/orphaned/web/javascript/reference/operators/pipeline_operator/index.html
new file mode 100644
index 0000000000..fd379e7147
--- /dev/null
+++ b/files/pl/orphaned/web/javascript/reference/operators/pipeline_operator/index.html
@@ -0,0 +1,66 @@
+---
+title: Operator potoku
+slug: orphaned/Web/JavaScript/Reference/Operators/Pipeline_operator
+tags:
+ - JavaScript
+ - Operator
+ - ekxperymentalny
+translation_of: Web/JavaScript/Reference/Operators/Pipeline_operator
+original_slug: Web/JavaScript/Reference/Operators/Pipeline_operator
+---
+<div>{{jsSidebar("Operators")}} {{SeeCompatTable}}</div>
+
+<div>Eskperymentalny operator potoku <code>|&gt;</code> (obecnie na pierwszym etapie testów) pozwala na tworzenie łańcuchów wywołań funkcji w czytelny sposób. Dodaje lukier syntaktyczny do wywołania funkcji z pojedynczym argumentem, pozwalając przykładowo na pisanie <code>'%21' |&gt; decodeURI</code> zamiast <code>decodeURI('%21')</code>.</div>
+
+<h2 id="Składnia">Składnia</h2>
+
+<pre class="syntaxbox">wyrażenie |&gt; funkcja</pre>
+
+<h2 id="Przykłady">Przykłady</h2>
+
+<h3 id="Łańcuchowe_wywołania_funkcji">Łańcuchowe wywołania funkcji</h3>
+
+<p>Operator potoku może poprawić czytelność kodu przy łańcuchowych wywołaniach wielu funkcji.</p>
+
+<pre class="brush: js">const double = (n) =&gt; n * 2;
+const increment = (n) =&gt; n + 1;
+
+// bez operatora potoku
+double(increment(double(double(5)))); // 42
+
+// z użyciem potoku
+5 |&gt; double |&gt; double |&gt; increment |&gt; double; // 42
+</pre>
+
+<h2 id="Specyfikacje">Specyfikacje</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Specyfikacja</th>
+ <th scope="col">Status</th>
+ <th scope="col">Uwagi</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><a href="http://tc39.github.io/proposal-pipeline-operator/">Pipeline operator draft</a></td>
+ <td>Stage 1</td>
+ <td>Nie jest jeszcze częścią specyfikacji ECMAScript.</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Wsparcie_przeglądarek">Wsparcie przeglądarek</h2>
+
+<div>
+
+
+<p>{{Compat("javascript.operators.pipeline")}}</p>
+</div>
+
+<h2 id="Zobacz_też">Zobacz też</h2>
+
+<ul>
+ <li><a href="https://github.com/tc39/proposals">TC39 proposals</a></li>
+</ul>