import { selectAll } from 'hast-util-select'; export default (additions) => { const adders = Object.entries(additions).map(adder); return (node) => adders.forEach((a) => a(node)); }; const adder = ([selector, className]) => { const writer = write(className); return (node) => selectAll(selector, node).forEach(writer); }; const write = (className) => ({ properties }) => { if (!properties.className) properties.className = className; else properties.className += ` ${className}`; }; > : coredns
Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/net/LICENSE (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2018-05-16Vendor update with github.com/ugorji/go and github.com/apache/thrift pinning ...Gravatar Yong Tang 10682-4047998/+37388
2018-05-16Dep ensure (#1803)Gravatar Miek Gieben 10377-54910/+4225825
2018-05-16Probe simplification (#1784)Gravatar Ruslan Drozhdzh 1-49/+42
2018-05-15plugin/tls: make CA parameter optional (#1800)Gravatar Ruslan Drozhdzh 2-3/+5
2018-05-11plugin/reload: mention auto in reload (#1793)Gravatar Chris O'Haver 1-0/+3
2018-05-11plugin/proxy: fix except example (#1796)Gravatar Chris O'Haver 1-1/+1
2018-05-11Try to clarify rewrite docs (#1795)Gravatar Chris O'Haver 1-13/+19
2018-05-10Up miekg/dns to 1.0.6 (#1792)Gravatar Miek Gieben 1-1/+1