pluck.js 102 B

1234567
  1. "use strict";
  2. var o = { foo: "bar" };
  3. module.exports = function (t, a) {
  4. a(t("foo")(o), o.foo);
  5. };