first.js 210 B

12345678910
  1. 'use strict'
  2. var after = require('./siblings').after
  3. module.exports = first
  4. /* Get the first child in `parent`. */
  5. function first(parent, includeWhiteSpace) {
  6. return after(parent, -1, includeWhiteSpace)
  7. }