A Pen by Zach Ashworth on CodePen.
A Pen by Zach Ashworth on CodePen.
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
// let metaData = { | |
// information:"", | |
// symbol:"", | |
// lastRefresh:"", | |
// outputSize:"", | |
// timeZone:"" | |
// } | |
let candleOhlcMappings = []; |
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
namespace Expando | |
{ | |
public static class ExpandoHelper | |
{ | |
public static dynamic ParseDictionary(IDictionary<string, object> dict, Type explicitType) | |
{ | |
if (dict == null) | |
{ | |
throw new ArgumentNullException("dict", "Dictionary was null, cannot parse a null dictionary"); |
Created for the May 2019 CodePen Challenge
A Pen by Zach Ashworth on CodePen.