- identify important takeaways from RV teams
- consolidate standardization items
- create overarching strategy
- identify next steps
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | NoFg7GCslgdJAGEBOAjMsqDMAmANFmAGxaw4AcqOkeA3gEQBOApgM7MCGjAxgBYDCzAHYAXZo3oAuVHnoB3AJZCAJgBUArowBGS5gEF1IgPYAlZlvUKANsqkz6RgGaOF3ZndlaOIsYwCeHvSsRlZcglZWgcGhjOFWBsZmFta20rJ8jEZCRgC2zL6B3EYcVgBCmkLihcVlFeIJpuaWNoEK0d4KWYFOLm44dgC+dPQ5SgpSwAh4IozqzNOz8wyKKhraugAyCo7ukliyK2qaOpUACpnK6twinUJSNPQA5sLi3kaMALIcAB4AEpwiKT7J4vRhvWJZABu4hEpyMciq0jAsnasWYEXORku11u91kPVczAAyuirHCERI9rIWOwuHxBKJ6jkjOpRECUSEwqStjtAl4fOIApJkfQiiVyoxKoxMdibl1pENgMAhOoIngplMVREALp4ZWqqzqo1aqy6/VqjV4E1mk1GzUGm0Gu1Wh1622W61up0e13mw0+nVei3G33ukOBv3Oz2RgOmoP+8NxmOJx3B+0RsPppOZl0Z70p+NR0P5rOphOlwuxstFvNp3PZkv16tVvVBTloiL0Z0gcjNgvJisDpuV/s56Nj4t18eN6dTyfl4dD2cL5c1htz2sr+drvuDiebncjwdtmJxLuWkBEM0gqXg8+jmfbltLp8PjfrrcH5/7j+Hl9ft9P1/b9HwAvdQOAwC/x/XdFxgo84Ig2DVxA99kNfcC0IQlCoNQoD0LAxCsP/SDMPw7CMKI8iSII0iqOgpCKMI6MTy5TtnQga9nlvYwJAY4j4Jopi6Jwsj+OowTJMYoSZKkgTpME+QlCOdZKnvKZUFQa8CT6dTFxvV5eL0ljuMM95jN9UUaglKU9KwLBkC40E7z/eh+V8AJxK8vDvNwvyxJ8wL/PooKAuC0SQv7AywSM1yxVqSUqmdCgtNbUyYvM1z0pc0LIrC/K8sKiLisokrmNKiryqqkTKqTBxnEJfosuc2Ln2inKosONYTncZ0sBAWjBuEobZI | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | const getValueFromPath = (object, path) => { | |
| const nestedObj = object[path[0]]; | |
| const nextPath = path.slice(1, path.length); | |
| if (path.length > 1) { | |
| return getValueFromPath(nestedObj, nextPath); | |
| } | |
| return nestedObj; | |
| }; | |
| const getValueFromPathEval = (object, path) => { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link rel="stylesheet" href="styles.css"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <header class="header js_fixedcontent"> | |
| <h1 class="">Hello!</h1> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | This is some code! | 
NewerOlder