Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

firstWhere.js 137B

12345
  1. 'use strict';
  2. module.exports = function firstWhere(key, operator, value) {
  3. return this.where(key, operator, value).first() || null;
  4. };