JSFiddle - React, Tailwind, and code Playground

by sqren

JavaScript

var setAllowedFields = function(allowedFields, model, data){
  _.each(allowedFields, function(field) {
    model.field = data.field;
  });
  return model;
};