mirror of
https://github.com/zoriya/react-native-svg.git
synced 2026-06-09 01:25:01 +00:00
15 lines
318 B
JavaScript
15 lines
318 B
JavaScript
export function pickNotNil(object) {
|
|
const result = {};
|
|
for (const key in object) {
|
|
if (object.hasOwnProperty(key)) {
|
|
const value = object[key];
|
|
if (value !== undefined && value !== null) {
|
|
result[key] = value;
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
export const idPattern = /#([^)]+)\)?$/;
|