出力として取得するためにbigObject
で定義されたプロパティのみでフィルタリングする便利な方法はありますか?filterInterface
filteredObject
大きなオブジェクトには多くのプロパティがあり、必要なプロパティまで情報を削除したいと思います(どこかに保存するために、オブジェクト全体を保存したくない/保存できない)。
// My big object
var bigObject = {
prop1: {
prop2: {
prop3: 123,
prop4: 456,
prop5: "TEST"
},
prop6: 789,
prop7: "xxx"
},
prop8: 5.6,
prop9: 3
};
// My "interface" to filter the object
var filterInterface = {
prop1: {
prop2: {
prop3: true,
},
prop7: true
}
};
// My expected result, only the properties of
// big Object which match the interface
var filteredObject = {
prop1: {
prop2: {
prop3: 123,
},
prop7: "xxx"
}
};