{"version":3,"sources":["node_modules\\react-dom\\lib\\quoteAttributeValueForBrowser.js"],"names":["escapeTextContentForBrowser","require","quoteAttributeValueForBrowser","value","module","exports"],"mappings":";;;;;;;;;;AAUA;;AAEA,GAAIA,6BAA8BC,QAAQ,+BAAR,CAAlC;;;;;;;;AAQA,QAASC,8BAAT,CAAuCC,KAAvC,CAA8C;AAC5C,MAAO,IAAMH,4BAA4BG,KAA5B,CAAN,CAA2C,GAAlD;AACD;;AAEDC,OAAOC,OAAP,CAAiBH,6BAAjB","file":"quoteAttributeValueForBrowser.js","sourceRoot":"D:/Work/Office/react-native-on-web/cli/tmpl/project","sourcesContent":["/**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n */\n\n'use strict';\n\nvar escapeTextContentForBrowser = require('./escapeTextContentForBrowser');\n\n/**\n * Escapes attribute value to prevent scripting attacks.\n *\n * @param {*} value Value to escape.\n * @return {string} An escaped string.\n */\nfunction quoteAttributeValueForBrowser(value) {\n  return '\"' + escapeTextContentForBrowser(value) + '\"';\n}\n\nmodule.exports = quoteAttributeValueForBrowser;"]}