Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fed_dev/deps.ts>postcss.Container#every

A Bundler with the web in mind.
Latest
method postcss.Container.prototype.every
Re-export
import { postcss } from "https://deno.land/x/fed_dev@0.9.0/deps.ts";
const { Container } = postcss;

Returns true if callback returns true for all of the container’s children.

const noPrefixes = rule.every(i => i.prop[0] !== '-')

Parameters

condition: (
node: Child,
index: number,
nodes: Child[],
) => boolean

Iterator returns true or false.

Returns

boolean

Is every child pass condition.